?? addusers.designer.cs
字號:
?namespace Myschool
{
partial class AddUsers
{
/// <summary>
/// 必需的設計器變量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的資源。
/// </summary>
/// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗體設計器生成的代碼
/// <summary>
/// 設計器支持所需的方法 - 不要
/// 使用代碼編輯器修改此方法的內容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddUsers));
this.lblname = new System.Windows.Forms.Label();
this.lblpwd1 = new System.Windows.Forms.Label();
this.lbltype = new System.Windows.Forms.Label();
this.txtname = new System.Windows.Forms.TextBox();
this.txtpwd1 = new System.Windows.Forms.TextBox();
this.comtype = new System.Windows.Forms.ComboBox();
this.lblpwd2 = new System.Windows.Forms.Label();
this.txtpwd2 = new System.Windows.Forms.TextBox();
this.btnsure = new System.Windows.Forms.Button();
this.btngiveup = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblname
//
this.lblname.AutoSize = true;
this.lblname.Location = new System.Drawing.Point(67, 36);
this.lblname.Name = "lblname";
this.lblname.Size = new System.Drawing.Size(41, 12);
this.lblname.TabIndex = 0;
this.lblname.Text = "用戶名";
//
// lblpwd1
//
this.lblpwd1.AutoSize = true;
this.lblpwd1.Location = new System.Drawing.Point(67, 72);
this.lblpwd1.Name = "lblpwd1";
this.lblpwd1.Size = new System.Drawing.Size(29, 12);
this.lblpwd1.TabIndex = 1;
this.lblpwd1.Text = "密碼";
//
// lbltype
//
this.lbltype.AutoSize = true;
this.lbltype.Location = new System.Drawing.Point(67, 149);
this.lbltype.Name = "lbltype";
this.lbltype.Size = new System.Drawing.Size(53, 12);
this.lbltype.TabIndex = 2;
this.lbltype.Text = "用戶類型";
//
// txtname
//
this.txtname.Location = new System.Drawing.Point(136, 33);
this.txtname.Name = "txtname";
this.txtname.Size = new System.Drawing.Size(159, 21);
this.txtname.TabIndex = 3;
//
// txtpwd1
//
this.txtpwd1.Location = new System.Drawing.Point(136, 69);
this.txtpwd1.Name = "txtpwd1";
this.txtpwd1.PasswordChar = '*';
this.txtpwd1.Size = new System.Drawing.Size(159, 21);
this.txtpwd1.TabIndex = 4;
//
// comtype
//
this.comtype.FormattingEnabled = true;
this.comtype.Items.AddRange(new object[] {
"學員",
"教員",
"管理員"});
this.comtype.Location = new System.Drawing.Point(136, 146);
this.comtype.Name = "comtype";
this.comtype.Size = new System.Drawing.Size(159, 20);
this.comtype.TabIndex = 5;
//
// lblpwd2
//
this.lblpwd2.AutoSize = true;
this.lblpwd2.Location = new System.Drawing.Point(67, 115);
this.lblpwd2.Name = "lblpwd2";
this.lblpwd2.Size = new System.Drawing.Size(53, 12);
this.lblpwd2.TabIndex = 6;
this.lblpwd2.Text = "密碼確認";
//
// txtpwd2
//
this.txtpwd2.Location = new System.Drawing.Point(136, 106);
this.txtpwd2.Name = "txtpwd2";
this.txtpwd2.PasswordChar = '*';
this.txtpwd2.Size = new System.Drawing.Size(159, 21);
this.txtpwd2.TabIndex = 7;
//
// btnsure
//
this.btnsure.Location = new System.Drawing.Point(69, 195);
this.btnsure.Name = "btnsure";
this.btnsure.Size = new System.Drawing.Size(93, 23);
this.btnsure.TabIndex = 8;
this.btnsure.Text = "確定";
this.btnsure.UseVisualStyleBackColor = true;
this.btnsure.Click += new System.EventHandler(this.btnsure_Click);
//
// btngiveup
//
this.btngiveup.Location = new System.Drawing.Point(204, 195);
this.btngiveup.Name = "btngiveup";
this.btngiveup.Size = new System.Drawing.Size(91, 24);
this.btngiveup.TabIndex = 9;
this.btngiveup.Text = "重寫";
this.btngiveup.UseVisualStyleBackColor = true;
this.btngiveup.Click += new System.EventHandler(this.btngiveup_Click);
//
// AddUsers
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(363, 245);
this.Controls.Add(this.btngiveup);
this.Controls.Add(this.btnsure);
this.Controls.Add(this.txtpwd2);
this.Controls.Add(this.lblpwd2);
this.Controls.Add(this.comtype);
this.Controls.Add(this.txtpwd1);
this.Controls.Add(this.txtname);
this.Controls.Add(this.lbltype);
this.Controls.Add(this.lblpwd1);
this.Controls.Add(this.lblname);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "AddUsers";
this.Text = "添加用戶";
this.Load += new System.EventHandler(this.AddUsers_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblname;
private System.Windows.Forms.Label lblpwd1;
private System.Windows.Forms.Label lbltype;
private System.Windows.Forms.TextBox txtname;
private System.Windows.Forms.TextBox txtpwd1;
private System.Windows.Forms.ComboBox comtype;
private System.Windows.Forms.Label lblpwd2;
private System.Windows.Forms.TextBox txtpwd2;
private System.Windows.Forms.Button btnsure;
private System.Windows.Forms.Button btngiveup;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -