进程监测(C#)

一、DataGridView的两个知识点

(1)列宽调整  

dataGridView1.AutoResizeColumns(); dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;

  DataGridViewAutoSizeColumnsMode枚举定义列宽调整模式。

DataGridViewAutoSizeColumnsMode枚举
AllCells                 列宽调整到适合列中所有单元格(包括标头单元格)的内容。                                     
AllCellsExceptHeader 列宽调整到适合列中除标头单元格以外所有单元格的内容。
DisplayedCells 列宽调整到适合位于屏幕上当前显示的行中的列的所有单元格(包括标头单元格)的内容。
DisplayedCellsExceptHeader 列宽调整到适合位于屏幕上当前显示的行中的列的所有单元格(不包括标头单元格)的内容。
None 列宽不会自动调整。
ColumnHeader 列宽调整到适合列标头单元格的内容。
Fill 列宽调整到使所有列宽精确填充控件的显示区域,要求使用水平滚动的目的只是保持列宽大于 DataGridViewColumn.MinimumWidth 属性值。相对列宽由相对 DataGridViewColumn.FillWeight 属性值决定。

(2)鼠标单击选中整行事件

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)); } }

HitTestInfo类包含关于 DataGridView控件中指定坐标对的信息,如行和列索引。无法继承此类。

DataGridView 类的 HitTest 方法返回一个 DataGridView.HitTestInfo。可以使用此方法确定 DataGridView 控件的哪个部分位于指定坐标。例如,可以调用方法来指定鼠标单击的坐标,从而确定所单击的单元格的行和列索引,或确定单击的是标头单元格还是滚动条。
二、进程监测完整代码

 

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;
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 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 btRefresh_Click(object sender, EventArgs e)
        {
            GetAllProcess();
        }

        private void Form1_Load(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));
            }
        }
    }
}

三、界面设计如下

posted @ 2013-11-06 15:22  Alex.Net  阅读(490)  评论(0编辑  收藏  举报