客房管理系统_1._0.Pwd.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

设计器支持所需的方法 - 不要 使用代码编辑器修改此方法的内容。
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            //
            // textBox1
            //
            this.textBox1.Location = new System.Drawing.Point(12, 24);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(142, 21);
            this.textBox1.TabIndex = 0;
            this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
            //
            // button1
            //
            this.button1.Location = new System.Drawing.Point(194, 24);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 1;
            this.button1.Text = "确定";
            this.button1.UseVisualStyleBackColor = true;
            //
            // Pwd
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(281, 66);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.textBox1);
            this.Name = "Pwd";
            this.Text = "请输入原始密码";
            this.Load += new System.EventHandler(this.Pwd_Load);
            this.ResumeLayout(false);
            this.PerformLayout();
        }