|
C#编写的一个简单的登陆界面对话框的原代码(2) { this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.textBox2 = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.Location = new System.Drawing.Point(128, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(168, 16); this.label1.TabIndex = 0; this.label1.Text = "请您输入用户名和密码"; // // label2 // this.label2.Location = new System.Drawing.Point(56, 80); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 16); this.label2.TabIndex = 1; this.label2.Text = "用 户 名"; // // label3 // this.label3.Location = new System.Drawing.Point(56, 120); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(48, 16); this.label3.TabIndex = 2; this.label3.Text = "密 码"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(136, 72); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(112, 21); this.textBox1.TabIndex = 3;
|