2009年1月21日 星期三

C# 刪除Process內程式

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;

namespace test
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
string ProcessName = "notepad"; //大小寫有差,不需要副檔名
Process[] MyProcess = Process.GetProcessesByName(ProcessName);

if (MyProcess.Length != 0) //檢查是不是有找到
{
// listBox1.Items.Add(MyProcess[0].ProcessName); 如果有 Listbox1 可以顯示出來是砍了那個 Procss
MyProcess[0].Kill();
}


}

}
}

沒有留言:

張貼留言