partial class LabelTextBoxButtonTestForm { /// /// 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.inputPasswordTextBox = new System.Windows.Forms.TextBox(); this.displayPasswordLabel = new System.Windows.Forms.Label(); this.displayPasswordButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // inputPasswordTextBox // this.inputPasswordTextBox.Location = new System.Drawing.Point(12, 12); this.inputPasswordTextBox.Name = "inputPasswordTextBox"; this.inputPasswordTextBox.PasswordChar = '*'; this.inputPasswordTextBox.Size = new System.Drawing.Size(255, 20); this.inputPasswordTextBox.TabIndex = 0; // // displayPasswordLabel // this.displayPasswordLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.displayPasswordLabel.Location = new System.Drawing.Point(12, 50); this.displayPasswordLabel.Name = "displayPasswordLabel"; this.displayPasswordLabel.Size = new System.Drawing.Size(255, 30); this.displayPasswordLabel.TabIndex = 1; // // displayPasswordButton // this.displayPasswordButton.Location = new System.Drawing.Point(88, 93); this.displayPasswordButton.Name = "displayPasswordButton"; this.displayPasswordButton.Size = new System.Drawing.Size(109, 36); this.displayPasswordButton.TabIndex = 2; this.displayPasswordButton.Text = "Show Me"; this.displayPasswordButton.Click += new System.EventHandler(this.displayPasswordButton_Click); // // LabelTextBoxButtonTest // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(279, 144); this.Controls.Add(this.displayPasswordButton); this.Controls.Add(this.displayPasswordLabel); this.Controls.Add(this.inputPasswordTextBox); this.Name = "LabelTextBoxButtonTest"; this.Text = "LabelTextBoxButtonTest"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox inputPasswordTextBox; private System.Windows.Forms.Label displayPasswordLabel; private System.Windows.Forms.Button displayPasswordButton; }