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

📄 memberform.designer.cs

📁 微软(Microsoft)出版社C井练习文件及解答
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace BellRingers
{
	partial class MemberForm
	{
		/// <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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MemberForm));
            this.label1 = new System.Windows.Forms.Label();
            this.firstName = new System.Windows.Forms.TextBox();
            this.textBoxMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.clearTextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.label2 = new System.Windows.Forms.Label();
            this.lastName = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.towerNames = new System.Windows.Forms.ComboBox();
            this.isCaptain = new System.Windows.Forms.CheckBox();
            this.label4 = new System.Windows.Forms.Label();
            this.memberSince = new System.Windows.Forms.DateTimePicker();
            this.yearsExperience = new System.Windows.Forms.GroupBox();
            this.accomplished = new System.Windows.Forms.RadioButton();
            this.experienced = new System.Windows.Forms.RadioButton();
            this.novice = new System.Windows.Forms.RadioButton();
            this.intermediate = new System.Windows.Forms.RadioButton();
            this.methods = new System.Windows.Forms.CheckedListBox();
            this.add = new System.Windows.Forms.Button();
            this.clear = new System.Windows.Forms.Button();
            this.mainMenu = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveMemberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.printToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.printDialog = new System.Windows.Forms.PrintDialog();
            this.printDocument = new System.Drawing.Printing.PrintDocument();
            this.textBoxMenu.SuspendLayout();
            this.yearsExperience.SuspendLayout();
            this.mainMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(10, 40);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(92, 20);
            this.label1.TabIndex = 0;
            this.label1.Text = "First Name";
            // 
            // firstName
            // 
            this.firstName.ContextMenuStrip = this.textBoxMenu;
            this.firstName.Enabled = false;
            this.firstName.Location = new System.Drawing.Point(120, 40);
            this.firstName.Name = "firstName";
            this.firstName.Size = new System.Drawing.Size(170, 26);
            this.firstName.TabIndex = 1;
            // 
            // textBoxMenu
            // 
            this.textBoxMenu.Enabled = true;
            this.textBoxMenu.GripMargin = new System.Windows.Forms.Padding(2);
            this.textBoxMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.clearTextToolStripMenuItem});
            this.textBoxMenu.Location = new System.Drawing.Point(25, 90);
            this.textBoxMenu.Name = "textBoxMenu";
            this.textBoxMenu.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.textBoxMenu.Size = new System.Drawing.Size(114, 26);
            this.textBoxMenu.Opening += new System.ComponentModel.CancelEventHandler(this.textBoxContextMenuPopup);
            // 
            // clearTextToolStripMenuItem
            // 
            this.clearTextToolStripMenuItem.Name = "clearTextToolStripMenuItem";
            this.clearTextToolStripMenuItem.Text = "Clear Text";
            this.clearTextToolStripMenuItem.Click += new System.EventHandler(this.textBoxClearClick);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(300, 40);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(91, 20);
            this.label2.TabIndex = 2;
            this.label2.Text = "Last Name";
            // 
            // lastName
            // 
            this.lastName.ContextMenuStrip = this.textBoxMenu;
            this.lastName.Enabled = false;
            this.lastName.Location = new System.Drawing.Point(400, 40);
            this.lastName.Name = "lastName";
            this.lastName.Size = new System.Drawing.Size(170, 26);
            this.lastName.TabIndex = 3;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(10, 92);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(53, 20);
            this.label3.TabIndex = 4;
            this.label3.Text = "Tower";
            // 
            // towerNames
            // 
            this.towerNames.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.towerNames.Enabled = false;
            this.towerNames.FormattingEnabled = true;
            this.towerNames.Location = new System.Drawing.Point(120, 92);
            this.towerNames.Name = "towerNames";
            this.towerNames.Size = new System.Drawing.Size(260, 28);
            this.towerNames.TabIndex = 5;
            // 
            // isCaptain
            // 
            this.isCaptain.AutoSize = true;
            this.isCaptain.Enabled = false;
            this.isCaptain.Location = new System.Drawing.Point(400, 92);
            this.isCaptain.Name = "isCaptain";
            this.isCaptain.Size = new System.Drawing.Size(86, 24);
            this.isCaptain.TabIndex = 6;
            this.isCaptain.Text = "Captain";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(10, 148);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(69, 40);
            this.label4.TabIndex = 7;
            this.label4.Text = "Member\r\nSince";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // memberSince
            // 
            this.memberSince.Enabled = false;
            this.memberSince.Location = new System.Drawing.Point(120, 148);
            this.memberSince.Name = "memberSince";
            this.memberSince.Size = new System.Drawing.Size(290, 26);
            this.memberSince.TabIndex = 8;
            // 
            // yearsExperience
            // 
            this.yearsExperience.Controls.Add(this.accomplished);
            this.yearsExperience.Controls.Add(this.experienced);
            this.yearsExperience.Controls.Add(this.novice);
            this.yearsExperience.Controls.Add(this.intermediate);
            this.yearsExperience.Enabled = false;
            this.yearsExperience.Location = new System.Drawing.Point(10, 204);
            this.yearsExperience.Name = "yearsExperience";
            this.yearsExperience.Size = new System.Drawing.Size(260, 160);
            this.yearsExperience.TabIndex = 9;
            this.yearsExperience.TabStop = false;
            this.yearsExperience.Text = "Experience";
            // 
            // accomplished
            // 
            this.accomplished.AutoSize = true;
            this.accomplished.Location = new System.Drawing.Point(16, 128);
            this.accomplished.Name = "accomplished";
            this.accomplished.Size = new System.Drawing.Size(157, 24);
            this.accomplished.TabIndex = 4;
            this.accomplished.Text = "10 or more years";
            // 
            // experienced
            // 
            this.experienced.AutoSize = true;
            this.experienced.Location = new System.Drawing.Point(16, 96);
            this.experienced.Name = "experienced";
            this.experienced.Size = new System.Drawing.Size(117, 24);
            this.experienced.TabIndex = 3;
            this.experienced.Text = "5 to 9 years";
            // 
            // novice
            // 

⌨️ 快捷键说明

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