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

📄 userform.designer.cs

📁 《C#和.NET第一步》中的财务系统 利用三层结构做的
💻 CS
字号:
namespace HomeMoney
{
	partial class UserForm
	{
		/// <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(UserForm));
			this.lblName = new System.Windows.Forms.Label();
			this.lblPwd = new System.Windows.Forms.Label();
			this.lblCPwd = new System.Windows.Forms.Label();
			this.lblAccountName = new System.Windows.Forms.Label();
			this.txtName = new System.Windows.Forms.TextBox();
			this.txtPwd = new System.Windows.Forms.TextBox();
			this.txtCPwd = new System.Windows.Forms.TextBox();
			this.txtAccountName = new System.Windows.Forms.TextBox();
			this.btnOk = new System.Windows.Forms.Button();
			this.pictureBox1 = new System.Windows.Forms.PictureBox();
			this.lblTitle = new System.Windows.Forms.Label();
			this.gbAddUser = new System.Windows.Forms.GroupBox();
			this.gbLogin = new System.Windows.Forms.GroupBox();
			this.cbAccountName = new System.Windows.Forms.ComboBox();
			this.cbName = new System.Windows.Forms.ComboBox();
			this.txtLPwd = new System.Windows.Forms.TextBox();
			this.lblLAccountName = new System.Windows.Forms.Label();
			this.lblLPwd = new System.Windows.Forms.Label();
			this.lblLName = new System.Windows.Forms.Label();
			this.btnCancel = new System.Windows.Forms.Button();
			((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
			this.gbAddUser.SuspendLayout();
			this.gbLogin.SuspendLayout();
			this.SuspendLayout();
			// 
			// lblName
			// 
			this.lblName.AutoSize = true;
			this.lblName.Location = new System.Drawing.Point(47, 20);
			this.lblName.Name = "lblName";
			this.lblName.Size = new System.Drawing.Size(29, 12);
			this.lblName.TabIndex = 0;
			this.lblName.Text = "用户";
			// 
			// lblPwd
			// 
			this.lblPwd.AutoSize = true;
			this.lblPwd.Location = new System.Drawing.Point(47, 45);
			this.lblPwd.Name = "lblPwd";
			this.lblPwd.Size = new System.Drawing.Size(29, 12);
			this.lblPwd.TabIndex = 1;
			this.lblPwd.Text = "密码";
			// 
			// lblCPwd
			// 
			this.lblCPwd.AutoSize = true;
			this.lblCPwd.Location = new System.Drawing.Point(23, 72);
			this.lblCPwd.Name = "lblCPwd";
			this.lblCPwd.Size = new System.Drawing.Size(53, 12);
			this.lblCPwd.TabIndex = 2;
			this.lblCPwd.Text = "确认密码";
			// 
			// lblAccountName
			// 
			this.lblAccountName.AutoSize = true;
			this.lblAccountName.Location = new System.Drawing.Point(23, 101);
			this.lblAccountName.Name = "lblAccountName";
			this.lblAccountName.Size = new System.Drawing.Size(53, 12);
			this.lblAccountName.TabIndex = 3;
			this.lblAccountName.Text = "账户名称";
			// 
			// txtName
			// 
			this.txtName.Location = new System.Drawing.Point(95, 20);
			this.txtName.Name = "txtName";
			this.txtName.Size = new System.Drawing.Size(106, 21);
			this.txtName.TabIndex = 4;
			// 
			// txtPwd
			// 
			this.txtPwd.Location = new System.Drawing.Point(95, 45);
			this.txtPwd.Name = "txtPwd";
			this.txtPwd.PasswordChar = '*';
			this.txtPwd.Size = new System.Drawing.Size(106, 21);
			this.txtPwd.TabIndex = 5;
			// 
			// txtCPwd
			// 
			this.txtCPwd.Location = new System.Drawing.Point(95, 72);
			this.txtCPwd.Name = "txtCPwd";
			this.txtCPwd.Size = new System.Drawing.Size(106, 21);
			this.txtCPwd.TabIndex = 6;
			// 
			// txtAccountName
			// 
			this.txtAccountName.Location = new System.Drawing.Point(95, 98);
			this.txtAccountName.Name = "txtAccountName";
			this.txtAccountName.Size = new System.Drawing.Size(106, 21);
			this.txtAccountName.TabIndex = 7;
			// 
			// btnOk
			// 
			this.btnOk.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
			this.btnOk.BackColor = System.Drawing.SystemColors.Control;
			this.btnOk.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnOk.BackgroundImage")));
			this.btnOk.Location = new System.Drawing.Point(261, 137);
			this.btnOk.Name = "btnOk";
			this.btnOk.Size = new System.Drawing.Size(62, 22);
			this.btnOk.TabIndex = 8;
			this.btnOk.Text = "确定";
			this.btnOk.UseVisualStyleBackColor = false;
			this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
			// 
			// pictureBox1
			// 
			this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
			this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage")));
			this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
			this.pictureBox1.Location = new System.Drawing.Point(0, 0);
			this.pictureBox1.Name = "pictureBox1";
			this.pictureBox1.Size = new System.Drawing.Size(45, 43);
			this.pictureBox1.TabIndex = 11;
			this.pictureBox1.TabStop = false;
			// 
			// lblTitle
			// 
			this.lblTitle.AutoSize = true;
			this.lblTitle.Font = new System.Drawing.Font("宋体", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
			this.lblTitle.Location = new System.Drawing.Point(54, 6);
			this.lblTitle.Name = "lblTitle";
			this.lblTitle.Size = new System.Drawing.Size(135, 12);
			this.lblTitle.TabIndex = 13;
			this.lblTitle.Text = "勤于理财是成功的保证";
			// 
			// gbAddUser
			// 
			this.gbAddUser.Controls.Add(this.txtAccountName);
			this.gbAddUser.Controls.Add(this.txtCPwd);
			this.gbAddUser.Controls.Add(this.txtPwd);
			this.gbAddUser.Controls.Add(this.txtName);
			this.gbAddUser.Controls.Add(this.lblAccountName);
			this.gbAddUser.Controls.Add(this.lblCPwd);
			this.gbAddUser.Controls.Add(this.lblPwd);
			this.gbAddUser.Controls.Add(this.lblName);
			this.gbAddUser.Location = new System.Drawing.Point(48, 31);
			this.gbAddUser.Margin = new System.Windows.Forms.Padding(0);
			this.gbAddUser.Name = "gbAddUser";
			this.gbAddUser.Padding = new System.Windows.Forms.Padding(0);
			this.gbAddUser.Size = new System.Drawing.Size(212, 128);
			this.gbAddUser.TabIndex = 14;
			this.gbAddUser.TabStop = false;
			// 
			// gbLogin
			// 
			this.gbLogin.Controls.Add(this.cbAccountName);
			this.gbLogin.Controls.Add(this.cbName);
			this.gbLogin.Controls.Add(this.txtLPwd);
			this.gbLogin.Controls.Add(this.lblLAccountName);
			this.gbLogin.Controls.Add(this.lblLPwd);
			this.gbLogin.Controls.Add(this.lblLName);
			this.gbLogin.Location = new System.Drawing.Point(47, 31);
			this.gbLogin.Margin = new System.Windows.Forms.Padding(0);
			this.gbLogin.Name = "gbLogin";
			this.gbLogin.Padding = new System.Windows.Forms.Padding(0);
			this.gbLogin.Size = new System.Drawing.Size(212, 128);
			this.gbLogin.TabIndex = 15;
			this.gbLogin.TabStop = false;
			// 
			// cbAccountName
			// 
			this.cbAccountName.FormattingEnabled = true;
			this.cbAccountName.Location = new System.Drawing.Point(94, 80);
			this.cbAccountName.Name = "cbAccountName";
			this.cbAccountName.Size = new System.Drawing.Size(105, 20);
			this.cbAccountName.TabIndex = 9;
			// 
			// cbName
			// 
			this.cbName.FormattingEnabled = true;
			this.cbName.Location = new System.Drawing.Point(94, 19);
			this.cbName.Name = "cbName";
			this.cbName.Size = new System.Drawing.Size(105, 20);
			this.cbName.TabIndex = 8;
			// 
			// txtLPwd
			// 
			this.txtLPwd.Location = new System.Drawing.Point(94, 49);
			this.txtLPwd.Name = "txtLPwd";
			this.txtLPwd.PasswordChar = '*';
			this.txtLPwd.Size = new System.Drawing.Size(106, 21);
			this.txtLPwd.TabIndex = 5;
			this.txtLPwd.Text = "123";
			// 
			// lblLAccountName
			// 
			this.lblLAccountName.AutoSize = true;
			this.lblLAccountName.Location = new System.Drawing.Point(24, 81);
			this.lblLAccountName.Name = "lblLAccountName";
			this.lblLAccountName.Size = new System.Drawing.Size(53, 12);
			this.lblLAccountName.TabIndex = 3;
			this.lblLAccountName.Text = "账户名称";
			// 
			// lblLPwd
			// 
			this.lblLPwd.AutoSize = true;
			this.lblLPwd.Location = new System.Drawing.Point(48, 51);
			this.lblLPwd.Name = "lblLPwd";
			this.lblLPwd.Size = new System.Drawing.Size(29, 12);
			this.lblLPwd.TabIndex = 1;
			this.lblLPwd.Text = "密码";
			// 
			// lblLName
			// 
			this.lblLName.AutoSize = true;
			this.lblLName.Location = new System.Drawing.Point(48, 20);
			this.lblLName.Name = "lblLName";
			this.lblLName.Size = new System.Drawing.Size(29, 12);
			this.lblLName.TabIndex = 0;
			this.lblLName.Text = "用户";
			// 
			// btnCancel
			// 
			this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
			this.btnCancel.BackColor = System.Drawing.SystemColors.Control;
			this.btnCancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCancel.BackgroundImage")));
			this.btnCancel.Location = new System.Drawing.Point(261, 107);
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.Size = new System.Drawing.Size(62, 22);
			this.btnCancel.TabIndex = 16;
			this.btnCancel.Text = "取消";
			this.btnCancel.UseVisualStyleBackColor = false;
			this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
			// 
			// UserForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.LemonChiffon;
			this.ClientSize = new System.Drawing.Size(328, 170);
			this.Controls.Add(this.btnCancel);
			this.Controls.Add(this.gbLogin);
			this.Controls.Add(this.gbAddUser);
			this.Controls.Add(this.lblTitle);
			this.Controls.Add(this.pictureBox1);
			this.Controls.Add(this.btnOk);
			this.Name = "UserForm";
			this.Text = "增加账户";
			((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
			this.gbAddUser.ResumeLayout(false);
			this.gbAddUser.PerformLayout();
			this.gbLogin.ResumeLayout(false);
			this.gbLogin.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.Label lblName;
		private System.Windows.Forms.Label lblPwd;
		private System.Windows.Forms.Label lblCPwd;
		private System.Windows.Forms.Label lblAccountName;
		private System.Windows.Forms.TextBox txtName;
		private System.Windows.Forms.TextBox txtPwd;
		private System.Windows.Forms.TextBox txtCPwd;
		private System.Windows.Forms.TextBox txtAccountName;
		private System.Windows.Forms.Button btnOk;
		private System.Windows.Forms.PictureBox pictureBox1;
		private System.Windows.Forms.Label lblTitle;
		private System.Windows.Forms.GroupBox gbAddUser;
		private System.Windows.Forms.GroupBox gbLogin;
		private System.Windows.Forms.ComboBox cbAccountName;
		private System.Windows.Forms.ComboBox cbName;
		private System.Windows.Forms.TextBox txtLPwd;
		private System.Windows.Forms.Label lblLAccountName;
		private System.Windows.Forms.Label lblLPwd;
		private System.Windows.Forms.Label lblLName;
		private System.Windows.Forms.Button btnCancel;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -