www.pudn.com > eKanBanConsole.zip > FrmClient.Designer.cs


namespace eKanBanClient 
{ 
    partial class FrmClient 
    { 
        ///  
        /// 必需的设计器变量。 
        ///  
        private System.ComponentModel.IContainer components = null; 
 
        ///  
        /// 清理所有正在使用的资源。 
        ///  
        /// 如果应释放托管资源,为 true;否则为 false。 
        protected override void Dispose(bool disposing) 
        { 
            if (disposing && (components != null)) 
            { 
                components.Dispose(); 
            } 
            base.Dispose(disposing); 
        } 
 
        #region Windows 窗体设计器生成的代码 
 
        ///  
        /// 设计器支持所需的方法 - 不要 
        /// 使用代码编辑器修改此方法的内容。 
        ///  
        private void InitializeComponent() 
        { 
            this.components = new System.ComponentModel.Container(); 
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmClient)); 
            this.backgroundWorker = new System.ComponentModel.BackgroundWorker(); 
            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(); 
            this.listBoxMessage = new System.Windows.Forms.ListBox(); 
            this.backgroundWorkerTcp = new System.ComponentModel.BackgroundWorker(); 
            this.contextMenuStrip1.SuspendLayout(); 
            this.SuspendLayout(); 
            //  
            // backgroundWorker 
            //  
            this.backgroundWorker.WorkerReportsProgress = true; 
            this.backgroundWorker.WorkerSupportsCancellation = true; 
            this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_DoWork); 
            this.backgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker_ProgressChanged); 
            //  
            // notifyIcon1 
            //  
            this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1; 
            this.notifyIcon1.Text = "notifyIcon1"; 
            this.notifyIcon1.Visible = true; 
            this.notifyIcon1.DoubleClick += new System.EventHandler(this.显示ToolStripMenuItem_Click); 
            //  
            // 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(95, 48); 
            //  
            // 显示ToolStripMenuItem 
            //  
            this.显示ToolStripMenuItem.Name = "显示ToolStripMenuItem"; 
            this.显示ToolStripMenuItem.Size = new System.Drawing.Size(94, 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(94, 22); 
            this.退出ToolStripMenuItem.Text = "退出"; 
            this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click); 
            //  
            // listBoxMessage 
            //  
            this.listBoxMessage.Dock = System.Windows.Forms.DockStyle.Fill; 
            this.listBoxMessage.FormattingEnabled = true; 
            this.listBoxMessage.ItemHeight = 12; 
            this.listBoxMessage.Location = new System.Drawing.Point(0, 0); 
            this.listBoxMessage.Name = "listBoxMessage"; 
            this.listBoxMessage.Size = new System.Drawing.Size(528, 460); 
            this.listBoxMessage.TabIndex = 0; 
            //  
            // backgroundWorkerTcp 
            //  
            this.backgroundWorkerTcp.WorkerReportsProgress = true; 
            this.backgroundWorkerTcp.WorkerSupportsCancellation = true; 
            this.backgroundWorkerTcp.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorkerTcp_DoWork); 
            this.backgroundWorkerTcp.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorkerTcp_ProgressChanged); 
            //  
            // FrmClient 
            //  
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 
            this.ClientSize = new System.Drawing.Size(528, 471); 
            this.Controls.Add(this.listBoxMessage); 
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 
            this.Name = "FrmClient"; 
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 
            this.Text = "消息助手"; 
            this.Load += new System.EventHandler(this.Form1_Load); 
            this.SizeChanged += new System.EventHandler(this.FrmClient_SizeChanged); 
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmClient_FormClosing); 
            this.contextMenuStrip1.ResumeLayout(false); 
            this.ResumeLayout(false); 
 
        } 
 
        #endregion 
 
        private System.ComponentModel.BackgroundWorker backgroundWorker; 
        private System.Windows.Forms.NotifyIcon notifyIcon1; 
        private System.Windows.Forms.ListBox listBoxMessage; 
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; 
        private System.Windows.Forms.ToolStripMenuItem 显示ToolStripMenuItem; 
        private System.Windows.Forms.ToolStripMenuItem 退出ToolStripMenuItem; 
        private System.ComponentModel.BackgroundWorker backgroundWorkerTcp; 
    } 
}