⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addusers.designer.cs

📁 一个简单的考生答题系统
💻 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 + -