【实例 1】创建 Windows 应用程序,在 RichTextBox 控件中显示所有当前系统中正在运行的进程。
使用Button和richTextbox控件,并进行更改窗体名称
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace GetProcessForm
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Process [] processes = Process.GetProcesses();
foreach (Process p in processes )
{
richTextBox1.Text = richTextBox1.Text + p.ProcessName + "\r\n";
}
}
}
}
【实例 2】创建 Windows 应用程序,并在文本框中输入需要启动的进程名称,单击“启动进程”按钮启动该进程。
//“启动进程”按钮的单击事件
private void button2_Click(object sender, EventArgs e)
{
//获取进程名称
string ProcessName = textBox1.Text;
//创建Process类的对象
Process p = new Process();
//设置进程名称
p.StartInfo.FileName = ProcessName;
//启动进程
p.Start();
}