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

📄 frmmain.designer.cs

📁 移动设备的 LINQ 编程介绍 .NET Compact Framework 版 LINQ 的特性
💻 CS
字号:
namespace Demo1___LinqToObjects
{
	partial class FrmMain
	{
		/// <summary>
		/// 必需的设计器变量。
		/// </summary>
		private System.ComponentModel.IContainer components = null;
		private System.Windows.Forms.MainMenu mainMenu1;

		/// <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()
		{
			this.mainMenu1 = new System.Windows.Forms.MainMenu();
			this.btnArray = new System.Windows.Forms.Button();
			this.btnFile = new System.Windows.Forms.Button();
			this.btnCsvFile = new System.Windows.Forms.Button();
			this.btnCollection = new System.Windows.Forms.Button();
			this.btnReflector = new System.Windows.Forms.Button();
			this.btnCustomClass = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// btnArray
			// 
			this.btnArray.Location = new System.Drawing.Point(45, 30);
			this.btnArray.Name = "btnArray";
			this.btnArray.Size = new System.Drawing.Size(150, 25);
			this.btnArray.TabIndex = 0;
			this.btnArray.Text = "Array Demo";
			this.btnArray.Click += new System.EventHandler(this.btnArray_Click);
			// 
			// btnFile
			// 
			this.btnFile.Location = new System.Drawing.Point(45, 104);
			this.btnFile.Name = "btnFile";
			this.btnFile.Size = new System.Drawing.Size(150, 25);
			this.btnFile.TabIndex = 2;
			this.btnFile.Text = "File Demo";
			this.btnFile.Click += new System.EventHandler(this.btnFile_Click);
			// 
			// btnCsvFile
			// 
			this.btnCsvFile.Location = new System.Drawing.Point(45, 141);
			this.btnCsvFile.Name = "btnCsvFile";
			this.btnCsvFile.Size = new System.Drawing.Size(150, 25);
			this.btnCsvFile.TabIndex = 3;
			this.btnCsvFile.Text = "CSV File Demo";
			this.btnCsvFile.Click += new System.EventHandler(this.btnCsvFile_Click);
			// 
			// btnCollection
			// 
			this.btnCollection.Location = new System.Drawing.Point(45, 67);
			this.btnCollection.Name = "btnCollection";
			this.btnCollection.Size = new System.Drawing.Size(150, 25);
			this.btnCollection.TabIndex = 1;
			this.btnCollection.Text = "Collection Demo";
			this.btnCollection.Click += new System.EventHandler(this.btnCollection_Click);
			// 
			// btnReflector
			// 
			this.btnReflector.Location = new System.Drawing.Point(45, 215);
			this.btnReflector.Name = "btnReflector";
			this.btnReflector.Size = new System.Drawing.Size(150, 25);
			this.btnReflector.TabIndex = 3;
			this.btnReflector.Text = "Reflector Demo";
			this.btnReflector.Click += new System.EventHandler(this.btnReflector_Click);
			// 
			// btnCustomClass
			// 
			this.btnCustomClass.Location = new System.Drawing.Point(45, 178);
			this.btnCustomClass.Name = "btnCustomClass";
			this.btnCustomClass.Size = new System.Drawing.Size(150, 25);
			this.btnCustomClass.TabIndex = 3;
			this.btnCustomClass.Text = "Custom Class";
			this.btnCustomClass.Click += new System.EventHandler(this.btnCustomClass_Click);
			// 
			// FrmMain
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
			this.AutoScroll = true;
			this.ClientSize = new System.Drawing.Size(240, 268);
			this.Controls.Add(this.btnFile);
			this.Controls.Add(this.btnArray);
			this.Controls.Add(this.btnCustomClass);
			this.Controls.Add(this.btnReflector);
			this.Controls.Add(this.btnCsvFile);
			this.Controls.Add(this.btnCollection);
			this.Menu = this.mainMenu1;
			this.MinimizeBox = false;
			this.Name = "FrmMain";
			this.Text = "LINQ to Objects";
			this.ResumeLayout(false);

		}

		#endregion

		private System.Windows.Forms.Button btnArray;
		private System.Windows.Forms.Button btnFile;
		private System.Windows.Forms.Button btnCsvFile;
		private System.Windows.Forms.Button btnCollection;
		private System.Windows.Forms.Button btnReflector;
		private System.Windows.Forms.Button btnCustomClass;
	}
}

⌨️ 快捷键说明

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