代码艺术家
Code artist

很喜欢释迦牟尼佛的一句话:“无论你遇见谁,他都是你生命该出现的人,绝非偶然,他一定教会你一些什么”。

有问题 问我 问Google

摘要: Process myProcess = new Process(); myProcess.StartInfo.FileName = "cmd.exe"; myProcess.StartInfo.UseShellExecute = false; myProcess.StartInfo.RedirectStandardInput = true; myProcess.StartInfo.RedirectStandardOutput = true; myProcess.StartInfo.RedirectStandardError = true; myProcess.StartIn 阅读全文
posted @ 2013-03-31 15:57 Jason‘ 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 实例一:计时器using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace WindowsFormsApplication1{ public partial class Timer : Form { public Timer() { InitializeComponent(); } pr. 阅读全文
posted @ 2013-03-31 15:45 Jason‘ 阅读(218) 评论(0) 推荐(0) 编辑