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

📄 mysettings.designer.cs

📁 《圣殿祭司的ASP.NET 2.0开发详解——使用C#》光盘内容.包含了书籍所含的源代码.非常经典的一本asp.net2.0的书籍
💻 CS
字号:
namespace MyObjectCSharp
{
	partial class MySettings
	{
		/// <summary>
		/// 设计工具所需的变量。
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// 清除任何使用中的资源。
		/// </summary>
		/// <param name="disposing">如果应该公开 Managed 资源则为 true,否则为 false。</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Windows Form 设计工具产生的程序代码

		/// <summary>
		/// 此为设计工具支援所需的方法 - 请勿使用程序代码编辑器修改这个方法的内容。
		///
		/// </summary>
		private void InitializeComponent()
		{
			this.btnRead = new System.Windows.Forms.Button();
			this.capUserName = new System.Windows.Forms.Label();
			this.capCompany = new System.Windows.Forms.Label();
			this.txtCompany = new System.Windows.Forms.TextBox();
			this.txtUserName = new System.Windows.Forms.TextBox();
			this.SuspendLayout();
			// 
			// btnRead
			// 
			this.btnRead.Location = new System.Drawing.Point(32, 24);
			this.btnRead.Name = "btnRead";
			this.btnRead.Size = new System.Drawing.Size(75, 23);
			this.btnRead.TabIndex = 0;
			this.btnRead.Text = "读取设置文件";
			this.btnRead.UseVisualStyleBackColor = true;
			this.btnRead.Click += new System.EventHandler(this.btnRead_Click);
			// 
			// capUserName
			// 
			this.capUserName.AutoSize = true;
			this.capUserName.Location = new System.Drawing.Point(30, 80);
			this.capUserName.Name = "capUserName";
			this.capUserName.Size = new System.Drawing.Size(77, 12);
			this.capUserName.TabIndex = 1;
			this.capUserName.Text = "用户名:";
			// 
			// capCompany
			// 
			this.capCompany.AutoSize = true;
			this.capCompany.Location = new System.Drawing.Point(30, 115);
			this.capCompany.Name = "capCompany";
			this.capCompany.Size = new System.Drawing.Size(77, 12);
			this.capCompany.TabIndex = 2;
			this.capCompany.Text = "公司名称 :";
			// 
			// txtCompany
			// 
			this.txtCompany.Location = new System.Drawing.Point(107, 112);
			this.txtCompany.Name = "txtCompany";
			this.txtCompany.Size = new System.Drawing.Size(169, 22);
			this.txtCompany.TabIndex = 3;
			// 
			// txtUserName
			// 
			this.txtUserName.Location = new System.Drawing.Point(107, 77);
			this.txtUserName.Name = "txtUserName";
			this.txtUserName.Size = new System.Drawing.Size(169, 22);
			this.txtUserName.TabIndex = 4;
			// 
			// MySettings
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(454, 322);
			this.Controls.Add(this.txtUserName);
			this.Controls.Add(this.txtCompany);
			this.Controls.Add(this.capCompany);
			this.Controls.Add(this.capUserName);
			this.Controls.Add(this.btnRead);
			this.Name = "MySettings";
			this.Text = "MySettings";
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.Button btnRead;
		private System.Windows.Forms.Label capUserName;
		private System.Windows.Forms.Label capCompany;
		private System.Windows.Forms.TextBox txtCompany;
		private System.Windows.Forms.TextBox txtUserName;
	}
}

⌨️ 快捷键说明

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