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

📄 customerform.designer.cs

📁 微软系列丛书<<C#2005从入门到精通>>
💻 CS
字号:
namespace CustomerDetails
{
	partial class CustomerForm
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.gender = new System.Windows.Forms.GroupBox();
			this.female = new System.Windows.Forms.RadioButton();
			this.male = new System.Windows.Forms.RadioButton();
			this.lastName = new System.Windows.Forms.TextBox();
			this.label2 = new System.Windows.Forms.Label();
			this.foreName = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.title = new System.Windows.Forms.ComboBox();
			this.menuStrip = new System.Windows.Forms.MenuStrip();
			this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.statusStrip = new System.Windows.Forms.StatusStrip();
			this.statusMessages = new System.Windows.Forms.ToolStripStatusLabel();
			this.gender.SuspendLayout();
			this.menuStrip.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
			this.statusStrip.SuspendLayout();
			this.SuspendLayout();
			// 
			// gender
			// 
			this.gender.Controls.Add(this.female);
			this.gender.Controls.Add(this.male);
			this.gender.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.gender.Location = new System.Drawing.Point(68, 133);
			this.gender.Name = "gender";
			this.gender.Size = new System.Drawing.Size(144, 100);
			this.gender.TabIndex = 11;
			this.gender.TabStop = false;
			this.gender.Text = "Gender";
			// 
			// female
			// 
			this.female.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.female.Location = new System.Drawing.Point(16, 64);
			this.female.Name = "female";
			this.female.Size = new System.Drawing.Size(104, 24);
			this.female.TabIndex = 7;
			this.female.Text = "Female";
			// 
			// male
			// 
			this.male.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.male.Checked = true;
			this.male.Location = new System.Drawing.Point(16, 32);
			this.male.Name = "male";
			this.male.Size = new System.Drawing.Size(104, 24);
			this.male.TabIndex = 6;
			this.male.Text = "Male";
			// 
			// lastName
			// 
			this.lastName.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.lastName.Location = new System.Drawing.Point(228, 85);
			this.lastName.Name = "lastName";
			this.lastName.Size = new System.Drawing.Size(144, 26);
			this.lastName.TabIndex = 10;
			// 
			// label2
			// 
			this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label2.Location = new System.Drawing.Point(12, 85);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(56, 23);
			this.label2.TabIndex = 8;
			this.label2.Text = "Name";
			// 
			// foreName
			// 
			this.foreName.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.foreName.Location = new System.Drawing.Point(68, 85);
			this.foreName.Name = "foreName";
			this.foreName.Size = new System.Drawing.Size(144, 26);
			this.foreName.TabIndex = 9;
			// 
			// label1
			// 
			this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.label1.Location = new System.Drawing.Point(12, 37);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(48, 23);
			this.label1.TabIndex = 6;
			this.label1.Text = "Title";
			// 
			// title
			// 
			this.title.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.title.DropDownWidth = 72;
			this.title.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.title.FormattingEnabled = true;
			this.title.Items.AddRange(new object[] {
            "Mr",
            "Mrs",
            "Miss",
            "Ms"});
			this.title.Location = new System.Drawing.Point(68, 37);
			this.title.Name = "title";
			this.title.Size = new System.Drawing.Size(72, 28);
			this.title.TabIndex = 7;
			// 
			// menuStrip
			// 
			this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem});
			this.menuStrip.Location = new System.Drawing.Point(0, 0);
			this.menuStrip.Name = "menuStrip";
			this.menuStrip.Size = new System.Drawing.Size(384, 24);
			this.menuStrip.TabIndex = 12;
			this.menuStrip.Text = "menuStrip1";
			// 
			// fileToolStripMenuItem
			// 
			this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.saveToolStripMenuItem,
            this.exitToolStripMenuItem});
			this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
			this.fileToolStripMenuItem.Text = "&File";
			// 
			// saveToolStripMenuItem
			// 
			this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
			this.saveToolStripMenuItem.Text = "&Save";
			this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveClick);
			// 
			// exitToolStripMenuItem
			// 
			this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
			this.exitToolStripMenuItem.Text = "E&xit";
			this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitClick);
			// 
			// errorProvider
			// 
			this.errorProvider.ContainerControl = this;
			// 
			// statusStrip
			// 
			this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.statusMessages});
			this.statusStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Table;
			this.statusStrip.Location = new System.Drawing.Point(0, 248);
			this.statusStrip.Name = "statusStrip";
			this.statusStrip.Size = new System.Drawing.Size(384, 22);
			this.statusStrip.TabIndex = 13;
			this.statusStrip.Text = "statusStrip1";
			// 
			// statusMessages
			// 
			this.statusMessages.Name = "statusMessages";
			// 
			// CustomerForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(384, 270);
			this.Controls.Add(this.gender);
			this.Controls.Add(this.lastName);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.foreName);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.title);
			this.Controls.Add(this.statusStrip);
			this.Controls.Add(this.menuStrip);
			this.MainMenuStrip = this.menuStrip;
			this.Name = "CustomerForm";
			this.Text = "Customer Details";
			this.gender.ResumeLayout(false);
			this.menuStrip.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
			this.statusStrip.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.GroupBox gender;
		private System.Windows.Forms.RadioButton female;
		private System.Windows.Forms.RadioButton male;
		private System.Windows.Forms.TextBox lastName;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.TextBox foreName;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.ComboBox title;
		private System.Windows.Forms.MenuStrip menuStrip;
		private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
		private System.Windows.Forms.ErrorProvider errorProvider;
		private System.Windows.Forms.StatusStrip statusStrip;
		private System.Windows.Forms.ToolStripStatusLabel statusMessages;
	}
}

⌨️ 快捷键说明

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