博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#进程监控
阅读量:6277 次
发布时间:2019-06-22

本文共 2941 字,大约阅读时间需要 9 分钟。

C#进程学习,本机中的所有进程的监测与控制

转载请注明出处:

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 ProcessMonitor

{
    public partial class Form1 : Form
    {
        Process[] myProcess;
        public Form1()
        {
            InitializeComponent();
            dataGridView1.AllowUserToAddRows = false;
            dataGridView1.AutoResizeColumns();
            dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
            dataGridView1.MultiSelect = false;
        }

        private void Form1_Load(object sender, EventArgs e)

        {
            GetAllProcess();
        }

        private void GetAllProcess()

        {
            dataGridView1.Rows.Clear();
            myProcess = Process.GetProcesses();
            foreach (Process p in myProcess)
            {
                int newRowIndex = dataGridView1.Rows.Add();
                DataGridViewRow row = dataGridView1.Rows[newRowIndex];
                row.Cells[0].Value = p.Id;
                row.Cells[1].Value = p.ProcessName;
                row.Cells[2].Value = string.Format("{0:###,##0.00}MB", p.WorkingSet64 / 1024.0f / 1024.0f);
                //有些进程无法获取启动时间和文件名信息,所以要用try/catch
                try
                {
                    row.Cells[3].Value = string.Format("{0}", p.StartTime);
                    row.Cells[4].Value = p.MainModule.FileName;
                }
                catch
                {
                    row.Cells[3].Value = "";
                    row.Cells[4].Value = "";
                }
            }
        }

        private void ShowProcessInfo(Process p)

        {
            StringBuilder sb = new StringBuilder();
            sb.AppendLine("进程名称:" + p.ProcessName + ",  ID:" + p.Id);
            try
            {
                sb.AppendLine("进程优先级:" + p.BasePriority + "(优先级类别: " + p.PriorityClass + ")");
                ProcessModule m = p.MainModule;
                sb.AppendLine("文件名:" + m.FileName);
                sb.AppendLine("版本:" + m.FileVersionInfo.FileVersion);
                sb.AppendLine("描述:" + m.FileVersionInfo.FileDescription);
                sb.AppendLine("语言:" + m.FileVersionInfo.Language);
                sb.AppendLine("------------------------");
                if (p.Modules != null)
                {
                    ProcessModuleCollection pmc = p.Modules;
                    sb.AppendLine("调用的模块(.dll):");
                    for (int i = 1; i < pmc.Count; i++)
                    {
                        sb.AppendLine(
                            "模块名:" + pmc[i].ModuleName + "\t" +
                            "版本:" + pmc[i].FileVersionInfo.FileVersion + "\t" +
                            "描述:" + pmc[i].FileVersionInfo.FileDescription);
                    }
                }
            }
            catch
            {
                sb.AppendLine("其他信息:无法获取");
            }
            this.richTextBox1.Text = sb.ToString();
        }

        private void buttonRefresh_Click(object sender, EventArgs e)

        {
            GetAllProcess();
        }

        private void dataGridView1_MouseClick(object sender, MouseEventArgs e)

        {
            //DataGridView.HitTestInfo h = dataGridView1.HitTest(e.X, e.Y);
            //if (h.Type== DataGridViewHitTestType.Cell || h.Type == DataGridViewHitTestType.RowHeader)
            //{
            //    dataGridView1.Rows[h.RowIndex].Selected = true;
            //    int processeId = (int)dataGridView1.CurrentRow.Cells[0].Value;
            //    ShowProcessInfo(Process.GetProcessById(processeId));
            //}
        }

        private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)

        {
            try
            {
                if (e.RowIndex >= 0)
                {
                    int processId = (int)dataGridView1.Rows[e.RowIndex].Cells[0].Value;
                    ShowProcessInfo(Process.GetProcessById(processId));
                }
            }
            catch(Exception ex)
            {
                MessageBox.Show("发生异常,原因是:" + ex.Message);
            }
        }
    }
}

转载于:https://www.cnblogs.com/aaaaa/archive/2012/09/24/2746871.html

你可能感兴趣的文章
浅谈MVC3自定义分页
查看>>
.net中ashx文件有什么用?功能有那些,一般用在什么情况下?
查看>>
select、poll、epoll之间的区别总结[整理]【转】
查看>>
CSS基础知识(上)
查看>>
PHP中常见的面试题2(附答案)
查看>>
26.Azure备份服务器(下)
查看>>
mybatis学习
查看>>
LCD的接口类型详解
查看>>
Spring Boot Unregistering JMX-exposed beans on shutdown
查看>>
poi 导入导出的api说明(大全)
查看>>
Mono for Android 优势与劣势
查看>>
将图片转成base64字符串并在JSP页面显示的Java代码
查看>>
js 面试题
查看>>
sqoop数据迁移(基于Hadoop和关系数据库服务器之间传送数据)
查看>>
腾讯云下安装 nodejs + 实现 Nginx 反向代理
查看>>
Javascript 中的 Array 操作
查看>>
java中包容易出现的错误及权限问题
查看>>
AngularJS之初级Route【一】(六)
查看>>
服务器硬件问题整理的一点总结
查看>>
SAP S/4HANA Cloud: Revolutionizing the Next Generation of Cloud ERP
查看>>