Opc.Ua.Configuration.UserPasswordControl.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

デザイナ サポートに必要なメソッドです。このメソッドの内容を コード エディタで変更しないでください。
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.PasswordTextBox = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.PasswordConfirmTextBox = new System.Windows.Forms.TextBox();
            this.SuspendLayout();
            // 
            // PasswordTextBox
            // 
            this.PasswordTextBox.Location = new System.Drawing.Point(120, 13);
            this.PasswordTextBox.Name = "PasswordTextBox";
            this.PasswordTextBox.PasswordChar = '*';
            this.PasswordTextBox.Size = new System.Drawing.Size(266, 19);
            this.PasswordTextBox.TabIndex = 0;
            this.PasswordTextBox.TextChanged += new System.EventHandler(this.PassworConfirm_TextChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(18, 16);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(54, 12);
            this.label1.TabIndex = 4;
            this.label1.Text = "Password";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(18, 41);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(102, 12);
            this.label2.TabIndex = 4;
            this.label2.Text = "Confirm Password";
            // 
            // PasswordConfirmTextBox
            // 
            this.PasswordConfirmTextBox.BackColor = System.Drawing.SystemColors.Window;
            this.PasswordConfirmTextBox.Location = new System.Drawing.Point(120, 38);
            this.PasswordConfirmTextBox.Name = "PasswordConfirmTextBox";
            this.PasswordConfirmTextBox.PasswordChar = '*';
            this.PasswordConfirmTextBox.Size = new System.Drawing.Size(266, 19);
            this.PasswordConfirmTextBox.TabIndex = 1;
            this.PasswordConfirmTextBox.TextChanged += new System.EventHandler(this.PassworConfirm_TextChanged);
            // 
            // UserPasswordControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.PasswordConfirmTextBox);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.PasswordTextBox);
            this.Controls.Add(this.label1);
            this.Name = "UserPasswordControl";
            this.Size = new System.Drawing.Size(415, 75);
            this.ResumeLayout(false);
            this.PerformLayout();

        }