C# 启动与停止进程

 也是书中《C#网络应用编程》的一章。方便日后翻用。

该例子为 notepad.exe (记事本)程序的启动与结束

 

引用命名空间:

using System.Diagnostics;
using System.IO;


 

源码:

namespace StartStopProcess
{
    public partial class Form1 : Form
    {
        int fileIndex;
        string fileName = "notepad.exe";
        Process process1 = new Process();
        public Form1()
        {
            InitializeComponent();
        }

        private void LoadProcessToControl()
        {
            lvw_Process.Items.Clear();
            Process[] processes = Process.GetProcessesByName(Path.GetFileNameWithoutExtension(fileName));
            foreach (Process p in processes)
            {
                ListViewItem item = new ListViewItem(
                    new string[]{
                    p.Id.ToString(),
                    p.ProcessName,
                    string.Format("{0}KB",p.WorkingSet64 / 1024f),
                    string.Format("{0}",p.StartTime),
                p.MainModule.FileName
            });
                lvw_Process.Items.Add(item);
            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            LoadProcessToControl();
        }

        private void btn_StartProcess_Click(object sender, EventArgs e)
        {
            string argument = Application.StartupPath + "\\myfile" + fileIndex + ".txt";
            if (!File.Exists(argument))
            {
                File.CreateText(argument);
            }
            ProcessStartInfo ps = new ProcessStartInfo(fileName, argument);
            ps.WindowStyle = ProcessWindowStyle.Normal;
            fileIndex++;
            Process p = new Process();
            p.StartInfo = ps;
            p.Start();
            //等待启动完成,否则获取进程信息可能会失败
            p.WaitForInputIdle();
            LoadProcessToControl();
        }

        private void btn_StopProcess_Click(object sender, EventArgs e)
        {
            this.Cursor = Cursors.WaitCursor;
            Process[] myprocesses = Process.GetProcessesByName(Path.GetFileNameWithoutExtension(fileName));
            foreach (Process p in myprocesses)
            {
                p.CloseMainWindow();
                p.WaitForExit(5000);    //设置最多等待5秒(处理类似用于需要用户确定关闭的对话框未关闭的情况)
                p.Close();
            }
            fileIndex = 0;
            LoadProcessToControl();
            this.Cursor = Cursors.Default;
        }


    }
}


截图:

 

 

主要控件:

ListView

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Andrew_wx

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值