FrmMain.Designer.cs 19.0 KB
namespace StroreManager
{
    partial class FrmMain
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
            this.btnLoad = new System.Windows.Forms.Button();
            this.dgvList = new System.Windows.Forms.DataGridView();
            this.Column_ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_Name = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_path = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_Version = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_isRun = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_btnStart = new System.Windows.Forms.DataGridViewLinkColumn();
            this.Column_btnClose = new System.Windows.Forms.DataGridViewLinkColumn();
            this.Column_PID = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_CPU = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_Memory = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_AutoOpen = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.Column_Priority = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.btnStartAll = new System.Windows.Forms.Button();
            this.btnStopAll = new System.Windows.Forms.Button();
            this.btnExit = new System.Windows.Forms.Button();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.chbAutoRun = new System.Windows.Forms.CheckBox();
            this.btnSetAutoRun = new System.Windows.Forms.Button();
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.退出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            ((System.ComponentModel.ISupportInitialize)(this.dgvList)).BeginInit();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnLoad
            // 
            this.btnLoad.Location = new System.Drawing.Point(36, 16);
            this.btnLoad.Name = "btnLoad";
            this.btnLoad.Size = new System.Drawing.Size(96, 23);
            this.btnLoad.TabIndex = 0;
            this.btnLoad.Text = "加载程序列表";
            this.btnLoad.UseVisualStyleBackColor = true;
            this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
            // 
            // dgvList
            // 
            this.dgvList.AllowUserToOrderColumns = true;
            this.dgvList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.dgvList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column_ID,
            this.Column_Name,
            this.Column_path,
            this.Column_Version,
            this.Column1,
            this.Column_isRun,
            this.Column_btnStart,
            this.Column_btnClose,
            this.Column_PID,
            this.Column_CPU,
            this.Column_Memory,
            this.Column_AutoOpen,
            this.Column_Priority});
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgvList.DefaultCellStyle = dataGridViewCellStyle1;
            this.dgvList.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
            this.dgvList.Location = new System.Drawing.Point(12, 69);
            this.dgvList.MultiSelect = false;
            this.dgvList.Name = "dgvList";
            this.dgvList.RowTemplate.Height = 23;
            this.dgvList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvList.Size = new System.Drawing.Size(1104, 371);
            this.dgvList.TabIndex = 2;
            this.dgvList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvList_CellClick);
            this.dgvList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvList_CellContentClick);
            this.dgvList.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dgvList_CellFormatting);
            this.dgvList.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvList_CellValueChanged);
            this.dgvList.CurrentCellDirtyStateChanged += new System.EventHandler(this.dgvList_CurrentCellDirtyStateChanged);
            // 
            // Column_ID
            // 
            this.Column_ID.DataPropertyName = "ID";
            this.Column_ID.HeaderText = "ID";
            this.Column_ID.Name = "Column_ID";
            this.Column_ID.ReadOnly = true;
            this.Column_ID.Width = 40;
            // 
            // Column_Name
            // 
            this.Column_Name.DataPropertyName = "ProcessName";
            this.Column_Name.HeaderText = "程序名称";
            this.Column_Name.Name = "Column_Name";
            this.Column_Name.ReadOnly = true;
            // 
            // Column_path
            // 
            this.Column_path.DataPropertyName = "ExePath";
            this.Column_path.HeaderText = "完整路径";
            this.Column_path.Name = "Column_path";
            this.Column_path.ReadOnly = true;
            this.Column_path.Width = 300;
            // 
            // Column_Version
            // 
            this.Column_Version.DataPropertyName = "FileVersion";
            this.Column_Version.HeaderText = "版本号";
            this.Column_Version.Name = "Column_Version";
            this.Column_Version.ReadOnly = true;
            this.Column_Version.Width = 80;
            // 
            // Column1
            // 
            this.Column1.DataPropertyName = "IsRun";
            this.Column1.HeaderText = "Column1";
            this.Column1.Name = "Column1";
            this.Column1.ReadOnly = true;
            this.Column1.Visible = false;
            // 
            // Column_isRun
            // 
            this.Column_isRun.DataPropertyName = "IsRunStr";
            this.Column_isRun.HeaderText = "运行状态";
            this.Column_isRun.Name = "Column_isRun";
            this.Column_isRun.ReadOnly = true;
            this.Column_isRun.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column_isRun.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.Column_isRun.Width = 80;
            // 
            // Column_btnStart
            // 
            this.Column_btnStart.DataPropertyName = "StartButtonStr";
            this.Column_btnStart.HeaderText = "启动";
            this.Column_btnStart.Name = "Column_btnStart";
            this.Column_btnStart.ReadOnly = true;
            this.Column_btnStart.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column_btnStart.Text = "启动";
            this.Column_btnStart.TrackVisitedState = false;
            this.Column_btnStart.Width = 60;
            // 
            // Column_btnClose
            // 
            this.Column_btnClose.HeaderText = "关闭";
            this.Column_btnClose.Name = "Column_btnClose";
            this.Column_btnClose.ReadOnly = true;
            this.Column_btnClose.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column_btnClose.Text = "关闭";
            this.Column_btnClose.UseColumnTextForLinkValue = true;
            this.Column_btnClose.Width = 60;
            // 
            // Column_PID
            // 
            this.Column_PID.DataPropertyName = "PID";
            this.Column_PID.HeaderText = "进程号";
            this.Column_PID.Name = "Column_PID";
            this.Column_PID.ReadOnly = true;
            this.Column_PID.Width = 80;
            // 
            // Column_CPU
            // 
            this.Column_CPU.DataPropertyName = "CPU";
            this.Column_CPU.HeaderText = "占用CPU";
            this.Column_CPU.Name = "Column_CPU";
            this.Column_CPU.ReadOnly = true;
            this.Column_CPU.Width = 80;
            // 
            // Column_Memory
            // 
            this.Column_Memory.DataPropertyName = "UseMemory";
            this.Column_Memory.HeaderText = "占用内存";
            this.Column_Memory.Name = "Column_Memory";
            this.Column_Memory.ReadOnly = true;
            this.Column_Memory.Width = 80;
            // 
            // Column_AutoOpen
            // 
            this.Column_AutoOpen.DataPropertyName = "IsAutoRun";
            this.Column_AutoOpen.HeaderText = "开机启动";
            this.Column_AutoOpen.Name = "Column_AutoOpen";
            this.Column_AutoOpen.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column_AutoOpen.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.Column_AutoOpen.Width = 80;
            // 
            // Column_Priority
            // 
            this.Column_Priority.DataPropertyName = "Priority";
            this.Column_Priority.HeaderText = "优先级";
            this.Column_Priority.Name = "Column_Priority";
            // 
            // btnStartAll
            // 
            this.btnStartAll.Location = new System.Drawing.Point(138, 16);
            this.btnStartAll.Name = "btnStartAll";
            this.btnStartAll.Size = new System.Drawing.Size(96, 23);
            this.btnStartAll.TabIndex = 3;
            this.btnStartAll.Text = "全部启动";
            this.btnStartAll.UseVisualStyleBackColor = true;
            this.btnStartAll.Click += new System.EventHandler(this.btnStartAll_Click);
            // 
            // btnStopAll
            // 
            this.btnStopAll.Location = new System.Drawing.Point(240, 16);
            this.btnStopAll.Name = "btnStopAll";
            this.btnStopAll.Size = new System.Drawing.Size(96, 23);
            this.btnStopAll.TabIndex = 4;
            this.btnStopAll.Text = "全部停止";
            this.btnStopAll.UseVisualStyleBackColor = true;
            this.btnStopAll.Click += new System.EventHandler(this.btnStopAll_Click);
            // 
            // btnExit
            // 
            this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnExit.Location = new System.Drawing.Point(1039, 16);
            this.btnExit.Name = "btnExit";
            this.btnExit.Size = new System.Drawing.Size(75, 23);
            this.btnExit.TabIndex = 5;
            this.btnExit.Text = "退出";
            this.btnExit.UseVisualStyleBackColor = true;
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
            // 
            // timer1
            // 
            this.timer1.Interval = 1000;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // chbAutoRun
            // 
            this.chbAutoRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.chbAutoRun.AutoSize = true;
            this.chbAutoRun.Location = new System.Drawing.Point(840, 19);
            this.chbAutoRun.Name = "chbAutoRun";
            this.chbAutoRun.Size = new System.Drawing.Size(96, 16);
            this.chbAutoRun.TabIndex = 6;
            this.chbAutoRun.Text = "是否开机启动";
            this.chbAutoRun.UseVisualStyleBackColor = true;
            this.chbAutoRun.CheckedChanged += new System.EventHandler(this.chbAutoRun_CheckedChanged);
            // 
            // btnSetAutoRun
            // 
            this.btnSetAutoRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSetAutoRun.Location = new System.Drawing.Point(953, 16);
            this.btnSetAutoRun.Name = "btnSetAutoRun";
            this.btnSetAutoRun.Size = new System.Drawing.Size(75, 23);
            this.btnSetAutoRun.TabIndex = 7;
            this.btnSetAutoRun.Text = "设置";
            this.btnSetAutoRun.UseVisualStyleBackColor = true;
            this.btnSetAutoRun.Click += new System.EventHandler(this.btnSetAutoRun_Click);
            // 
            // notifyIcon1
            // 
            this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
            this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
            this.notifyIcon1.Text = "notifyIcon1";
            this.notifyIcon1.Visible = true;
            this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.显示ToolStripMenuItem,
            this.退出ToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(101, 48);
            // 
            // 显示ToolStripMenuItem
            // 
            this.显示ToolStripMenuItem.Name = "显示ToolStripMenuItem";
            this.显示ToolStripMenuItem.Size = new System.Drawing.Size(100, 22);
            this.显示ToolStripMenuItem.Text = "显示";
            this.显示ToolStripMenuItem.Click += new System.EventHandler(this.显示ToolStripMenuItem_Click);
            // 
            // 退出ToolStripMenuItem
            // 
            this.退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";
            this.退出ToolStripMenuItem.Size = new System.Drawing.Size(100, 22);
            this.退出ToolStripMenuItem.Text = "退出";
            this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click);
            // 
            // FrmMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1128, 473);
            this.Controls.Add(this.btnSetAutoRun);
            this.Controls.Add(this.chbAutoRun);
            this.Controls.Add(this.btnExit);
            this.Controls.Add(this.btnStopAll);
            this.Controls.Add(this.btnStartAll);
            this.Controls.Add(this.dgvList);
            this.Controls.Add(this.btnLoad);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "FrmMain";
            this.Text = "料仓管理系统";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMain_FormClosing);
            this.Load += new System.EventHandler(this.FrmMain_Load);
            ((System.ComponentModel.ISupportInitialize)(this.dgvList)).EndInit();
            this.contextMenuStrip1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button btnLoad;
        private System.Windows.Forms.DataGridView dgvList;
        private System.Windows.Forms.Button btnStartAll;
        private System.Windows.Forms.Button btnStopAll;
        private System.Windows.Forms.Button btnExit;
        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.CheckBox chbAutoRun;
        private System.Windows.Forms.Button btnSetAutoRun;
        private System.Windows.Forms.NotifyIcon notifyIcon1;
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
        private System.Windows.Forms.ToolStripMenuItem 显示ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 退出ToolStripMenuItem;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_ID;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_Name;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_path;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_Version;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_isRun;
        private System.Windows.Forms.DataGridViewLinkColumn Column_btnStart;
        private System.Windows.Forms.DataGridViewLinkColumn Column_btnClose;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_PID;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_CPU;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_Memory;
        private System.Windows.Forms.DataGridViewCheckBoxColumn Column_AutoOpen;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_Priority;
    }
}