欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

利用C#實現(xiàn)進程管理器

 更新時間:2022年12月14日 08:26:28   作者:芝麻粒兒  
這篇文章主要為大家詳細介紹了如何利用C#實現(xiàn)自己的進程管理器,文中的示例代碼講解詳細,對我們學(xué)習(xí)C#有一定的幫助,感興趣的小伙伴可以了解一下

實踐過程

效果

代碼

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

        private void getProcessInfo()
        {
            try
            {
                listView1.Items.Clear();
                Process[] MyProcesses = Process.GetProcesses();
                tsslInfo.Text = "進程總數(shù):" + MyProcesses.Length.ToString();
                string[] Minfo = new string[6];
                foreach (Process MyProcess in MyProcesses)
                {
                    Minfo[0] = MyProcess.ProcessName;
                    Minfo[1] = MyProcess.MainModule.ModuleName;
                    Minfo[2] = MyProcess.Threads.Count.ToString();
                    Minfo[3] = MyProcess.BasePriority.ToString();
                    Minfo[4] = Convert.ToString(MyProcess.WorkingSet / 1024) + "K";
                    Minfo[5] = Convert.ToString(MyProcess.VirtualMemorySize / 1024) + "K";
                    ListViewItem lvi = new ListViewItem(Minfo, "process");
                    listView1.Items.Add(lvi);
                }
            }
            catch { }
        }

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

        private void 刷新ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            getProcessInfo();
        }

        private void 結(jié)束進程ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {
                if (MessageBox.Show("警告:終止進程會導(dǎo)致不希望發(fā)生的結(jié)果,\r包括數(shù)據(jù)丟失和系統(tǒng)不穩(wěn)定。在被終止前,\r進程將沒有機會保存其狀態(tài)和數(shù)據(jù)。確實\r想終止該進程嗎?", "任務(wù)管理器警告", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == DialogResult.Yes)
                {
                    string ProcessName = listView1.SelectedItems[0].Text;
                    Process[] MyProcess = Process.GetProcessesByName(ProcessName);
                    MyProcess[0].Kill();
                    getProcessInfo();
                }
                else
                { }
            }
            catch
            {
                string ProcessName = listView1.SelectedItems[0].Text;
                Process[] MyProcess1 = Process.GetProcessesByName(ProcessName);
                Process MyProcess = new Process();
                //設(shè)定程序名
                MyProcess.StartInfo.FileName = "cmd.exe";
                //關(guān)閉Shell的使用
                MyProcess.StartInfo.UseShellExecute = false;
                //重定向標(biāo)準(zhǔn)輸入
                MyProcess.StartInfo.RedirectStandardInput = true;
                //重定向標(biāo)準(zhǔn)輸出
                MyProcess.StartInfo.RedirectStandardOutput = true;
                //重定向錯誤輸出
                MyProcess.StartInfo.RedirectStandardError = true;
                //設(shè)置不顯示窗口
                MyProcess.StartInfo.CreateNoWindow = true;
                //執(zhí)行強制結(jié)束命令
                MyProcess.Start();
                MyProcess.StandardInput.WriteLine("ntsd -c q -p " + (MyProcess1[0].Id).ToString());
                MyProcess.StandardInput.WriteLine("Exit");
                getProcessInfo();
            }
        }

        private void SetBasePriority(int i)
        {
            string ProcessName = listView1.SelectedItems[0].Text;
            Process[] MyProcess = Process.GetProcessesByName(ProcessName);
            switch (i)
            {
                case 0: MyProcess[0].PriorityClass = ProcessPriorityClass.Idle; break;//低
                case 1: MyProcess[0].PriorityClass = ProcessPriorityClass.Normal; break;//標(biāo)準(zhǔn)
                case 2: MyProcess[0].PriorityClass = ProcessPriorityClass.High; break;//高
                case 3: MyProcess[0].PriorityClass = ProcessPriorityClass.RealTime; break;//實時
                case 4: MyProcess[0].PriorityClass = ProcessPriorityClass.AboveNormal; break;//高于標(biāo)準(zhǔn)
                case 5: MyProcess[0].PriorityClass = ProcessPriorityClass.BelowNormal; break;//低于標(biāo)準(zhǔn)
            }
            getProcessInfo();
        }
        private void 實時ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SetBasePriority(3);
        }

        private void 高ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SetBasePriority(2);
        }

        private void 高于標(biāo)準(zhǔn)ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SetBasePriority(4);
        }

        private void 標(biāo)準(zhǔn)ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SetBasePriority(1);
        }

        private void 低于標(biāo)準(zhǔn)ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SetBasePriority(5);
        }

        private void 低ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SetBasePriority(0);
        }
    }
partial class Form1
    {
        /// <summary>
        /// 必需的設(shè)計器變量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的資源。
        /// </summary>
        /// <param name="disposing">如果應(yīng)釋放托管資源,為 true;否則為 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗體設(shè)計器生成的代碼

        /// <summary>
        /// 設(shè)計器支持所需的方法 - 不要
        /// 使用代碼編輯器修改此方法的內(nèi)容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.刷新ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.結(jié)束進程ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.設(shè)置優(yōu)先級ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.實時ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.高ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.高于標(biāo)準(zhǔn)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.標(biāo)準(zhǔn)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.低于標(biāo)準(zhǔn)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.低ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.listView1 = new System.Windows.Forms.ListView();
            this.columnHeader11 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader12 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader13 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader14 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader15 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader16 = new System.Windows.Forms.ColumnHeader();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.tsslInfo = new System.Windows.Forms.ToolStripStatusLabel();
            this.contextMenuStrip1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.刷新ToolStripMenuItem,
            this.結(jié)束進程ToolStripMenuItem,
            this.設(shè)置優(yōu)先級ToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            this.contextMenuStrip1.ShowImageMargin = false;
            this.contextMenuStrip1.ShowItemToolTips = false;
            this.contextMenuStrip1.Size = new System.Drawing.Size(106, 70);
            // 
            // 刷新ToolStripMenuItem
            // 
            this.刷新ToolStripMenuItem.Name = "刷新ToolStripMenuItem";
            this.刷新ToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
            this.刷新ToolStripMenuItem.Text = "刷新";
            this.刷新ToolStripMenuItem.Click += new System.EventHandler(this.刷新ToolStripMenuItem_Click);
            // 
            // 結(jié)束進程ToolStripMenuItem
            // 
            this.結(jié)束進程ToolStripMenuItem.Name = "結(jié)束進程ToolStripMenuItem";
            this.結(jié)束進程ToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
            this.結(jié)束進程ToolStripMenuItem.Text = "結(jié)束進程";
            this.結(jié)束進程ToolStripMenuItem.Click += new System.EventHandler(this.結(jié)束進程ToolStripMenuItem_Click);
            // 
            // 設(shè)置優(yōu)先級ToolStripMenuItem
            // 
            this.設(shè)置優(yōu)先級ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.實時ToolStripMenuItem,
            this.高ToolStripMenuItem,
            this.高于標(biāo)準(zhǔn)ToolStripMenuItem,
            this.標(biāo)準(zhǔn)ToolStripMenuItem,
            this.低于標(biāo)準(zhǔn)ToolStripMenuItem,
            this.低ToolStripMenuItem});
            this.設(shè)置優(yōu)先級ToolStripMenuItem.Name = "設(shè)置優(yōu)先級ToolStripMenuItem";
            this.設(shè)置優(yōu)先級ToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
            this.設(shè)置優(yōu)先級ToolStripMenuItem.Text = "設(shè)置優(yōu)先級";
            // 
            // 實時ToolStripMenuItem
            // 
            this.實時ToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.實時ToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.實時ToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.實時ToolStripMenuItem.Name = "實時ToolStripMenuItem";
            this.實時ToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.實時ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
            this.實時ToolStripMenuItem.Text = "實時";
            this.實時ToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.實時ToolStripMenuItem.Click += new System.EventHandler(this.實時ToolStripMenuItem_Click);
            // 
            // 高ToolStripMenuItem
            // 
            this.高ToolStripMenuItem.Name = "高ToolStripMenuItem";
            this.高ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
            this.高ToolStripMenuItem.Text = "高";
            this.高ToolStripMenuItem.Click += new System.EventHandler(this.高ToolStripMenuItem_Click);
            // 
            // 高于標(biāo)準(zhǔn)ToolStripMenuItem
            // 
            this.高于標(biāo)準(zhǔn)ToolStripMenuItem.Name = "高于標(biāo)準(zhǔn)ToolStripMenuItem";
            this.高于標(biāo)準(zhǔn)ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
            this.高于標(biāo)準(zhǔn)ToolStripMenuItem.Text = "高于標(biāo)準(zhǔn)";
            this.高于標(biāo)準(zhǔn)ToolStripMenuItem.Click += new System.EventHandler(this.高于標(biāo)準(zhǔn)ToolStripMenuItem_Click);
            // 
            // 標(biāo)準(zhǔn)ToolStripMenuItem
            // 
            this.標(biāo)準(zhǔn)ToolStripMenuItem.Name = "標(biāo)準(zhǔn)ToolStripMenuItem";
            this.標(biāo)準(zhǔn)ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
            this.標(biāo)準(zhǔn)ToolStripMenuItem.Text = "標(biāo)準(zhǔn)";
            this.標(biāo)準(zhǔn)ToolStripMenuItem.Click += new System.EventHandler(this.標(biāo)準(zhǔn)ToolStripMenuItem_Click);
            // 
            // 低于標(biāo)準(zhǔn)ToolStripMenuItem
            // 
            this.低于標(biāo)準(zhǔn)ToolStripMenuItem.Name = "低于標(biāo)準(zhǔn)ToolStripMenuItem";
            this.低于標(biāo)準(zhǔn)ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
            this.低于標(biāo)準(zhǔn)ToolStripMenuItem.Text = "低于標(biāo)準(zhǔn)";
            this.低于標(biāo)準(zhǔn)ToolStripMenuItem.Click += new System.EventHandler(this.低于標(biāo)準(zhǔn)ToolStripMenuItem_Click);
            // 
            // 低ToolStripMenuItem
            // 
            this.低ToolStripMenuItem.Name = "低ToolStripMenuItem";
            this.低ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
            this.低ToolStripMenuItem.Text = "低";
            this.低ToolStripMenuItem.Click += new System.EventHandler(this.低ToolStripMenuItem_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(469, 314);
            this.tabControl1.TabIndex = 6;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.listView1);
            this.tabPage1.Location = new System.Drawing.Point(4, 21);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(461, 289);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "進程";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // listView1
            // 
            this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader11,
            this.columnHeader12,
            this.columnHeader13,
            this.columnHeader14,
            this.columnHeader15,
            this.columnHeader16});
            this.listView1.ContextMenuStrip = this.contextMenuStrip1;
            this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listView1.FullRowSelect = true;
            this.listView1.GridLines = true;
            this.listView1.Location = new System.Drawing.Point(3, 3);
            this.listView1.Name = "listView1";
            this.listView1.Size = new System.Drawing.Size(455, 283);
            this.listView1.TabIndex = 0;
            this.listView1.UseCompatibleStateImageBehavior = false;
            this.listView1.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader11
            // 
            this.columnHeader11.Text = "映像名稱";
            this.columnHeader11.Width = 100;
            // 
            // columnHeader12
            // 
            this.columnHeader12.Text = "進程ID";
            this.columnHeader12.Width = 70;
            // 
            // columnHeader13
            // 
            this.columnHeader13.Text = "線程數(shù)";
            this.columnHeader13.Width = 70;
            // 
            // columnHeader14
            // 
            this.columnHeader14.Text = "優(yōu)先級";
            // 
            // columnHeader15
            // 
            this.columnHeader15.Text = "物理內(nèi)存";
            this.columnHeader15.Width = 65;
            // 
            // columnHeader16
            // 
            this.columnHeader16.Text = "虛擬內(nèi)存";
            this.columnHeader16.Width = 85;
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsslInfo});
            this.statusStrip1.Location = new System.Drawing.Point(0, 314);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(469, 22);
            this.statusStrip1.TabIndex = 7;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // tsslInfo
            // 
            this.tsslInfo.Name = "tsslInfo";
            this.tsslInfo.Size = new System.Drawing.Size(131, 17);
            this.tsslInfo.Text = "toolStripStatusLabel1";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(469, 336);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.statusStrip1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "Form1";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "進程管理器";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.contextMenuStrip1.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
        private System.Windows.Forms.ToolStripMenuItem 刷新ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 結(jié)束進程ToolStripMenuItem;
        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPage1;
        private System.Windows.Forms.ListView listView1;
        private System.Windows.Forms.ColumnHeader columnHeader11;
        private System.Windows.Forms.ColumnHeader columnHeader12;
        private System.Windows.Forms.ColumnHeader columnHeader13;
        private System.Windows.Forms.ColumnHeader columnHeader14;
        private System.Windows.Forms.ColumnHeader columnHeader15;
        private System.Windows.Forms.ColumnHeader columnHeader16;
        private System.Windows.Forms.ToolStripMenuItem 設(shè)置優(yōu)先級ToolStripMenuItem;
        private System.Windows.Forms.StatusStrip statusStrip1;
        private System.Windows.Forms.ToolStripStatusLabel tsslInfo;
        private System.Windows.Forms.ToolStripMenuItem 實時ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 高ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 高于標(biāo)準(zhǔn)ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 標(biāo)準(zhǔn)ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 低于標(biāo)準(zhǔn)ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 低ToolStripMenuItem;
    }

到此這篇關(guān)于利用C#實現(xiàn)進程管理器的文章就介紹到這了,更多相關(guān)C#進程管理器內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評論