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


namespace eKanBanConsole 
{ 
    partial class FrmInput 
    { 
        ///  
        /// Required designer variable. 
        ///  
        private System.ComponentModel.IContainer components = null; 
 
        ///  
        /// Clean up any resources being used. 
        ///  
        /// true if managed resources should be disposed; otherwise, false. 
        protected override void Dispose(bool disposing) 
        { 
            if (disposing && (components != null)) 
            { 
                components.Dispose(); 
            } 
            base.Dispose(disposing); 
        } 
 
        #region Windows Form Designer generated code 
 
        ///  
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor. 
        ///  
        private void InitializeComponent() 
        { 
            this.txtMessage = new System.Windows.Forms.TextBox(); 
            this.button1 = new System.Windows.Forms.Button(); 
            this.button2 = new System.Windows.Forms.Button(); 
            this.SuspendLayout(); 
            //  
            // txtMessage 
            //  
            this.txtMessage.Dock = System.Windows.Forms.DockStyle.Top; 
            this.txtMessage.Location = new System.Drawing.Point(0, 0); 
            this.txtMessage.Multiline = true; 
            this.txtMessage.Name = "txtMessage"; 
            this.txtMessage.Size = new System.Drawing.Size(292, 231); 
            this.txtMessage.TabIndex = 0; 
            //  
            // button1 
            //  
            this.button1.DialogResult = System.Windows.Forms.DialogResult.OK; 
            this.button1.Location = new System.Drawing.Point(66, 242); 
            this.button1.Name = "button1"; 
            this.button1.Size = new System.Drawing.Size(75, 23); 
            this.button1.TabIndex = 1; 
            this.button1.Text = "发送"; 
            this.button1.UseVisualStyleBackColor = true; 
            //  
            // button2 
            //  
            this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel; 
            this.button2.Location = new System.Drawing.Point(147, 242); 
            this.button2.Name = "button2"; 
            this.button2.Size = new System.Drawing.Size(75, 23); 
            this.button2.TabIndex = 2; 
            this.button2.Text = "取消"; 
            this.button2.UseVisualStyleBackColor = true; 
            //  
            // FrmInput 
            //  
            this.AcceptButton = this.button1; 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 
            this.CancelButton = this.button2; 
            this.ClientSize = new System.Drawing.Size(292, 277); 
            this.Controls.Add(this.button2); 
            this.Controls.Add(this.button1); 
            this.Controls.Add(this.txtMessage); 
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; 
            this.Name = "FrmInput"; 
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 
            this.Text = "输入消息"; 
            this.ResumeLayout(false); 
            this.PerformLayout(); 
 
        } 
 
        #endregion 
 
        private System.Windows.Forms.TextBox txtMessage; 
        private System.Windows.Forms.Button button1; 
        private System.Windows.Forms.Button button2; 
    } 
}