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

📄 gridfindform.designer.cs

📁 《C#和.NET第一步》中的财务系统 利用三层结构做的
💻 CS
字号:
namespace HomeMoney
{
	partial class GridFindForm
	{
		/// <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()
		{
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.cbFindItem = new System.Windows.Forms.ComboBox();
			this.txtValue = new System.Windows.Forms.TextBox();
			this.btnOK = new System.Windows.Forms.Button();
			this.dtValue = new System.Windows.Forms.DateTimePicker();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(33, 12);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(53, 12);
			this.label1.TabIndex = 0;
			this.label1.Text = "查找项目";
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(33, 40);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(53, 12);
			this.label2.TabIndex = 1;
			this.label2.Text = "查找内容";
			// 
			// cbFindItem
			// 
			this.cbFindItem.FormattingEnabled = true;
			this.cbFindItem.Items.AddRange(new object[] {
            "交易日期",
            "项目名称",
            "交易说明"});
			this.cbFindItem.Location = new System.Drawing.Point(85, 11);
			this.cbFindItem.Name = "cbFindItem";
			this.cbFindItem.Size = new System.Drawing.Size(121, 20);
			this.cbFindItem.TabIndex = 2;
			this.cbFindItem.Text = "项目名称";
			this.cbFindItem.SelectedIndexChanged += new System.EventHandler(this.cbFindItem_SelectedIndexChanged);
			// 
			// txtValue
			// 
			this.txtValue.Location = new System.Drawing.Point(86, 38);
			this.txtValue.Name = "txtValue";
			this.txtValue.Size = new System.Drawing.Size(120, 21);
			this.txtValue.TabIndex = 3;
			// 
			// btnOK
			// 
			this.btnOK.BackgroundImage = global::HomeMoney.Properties.Resources.SpeedItemButtonHot;
			this.btnOK.Location = new System.Drawing.Point(35, 65);
			this.btnOK.Name = "btnOK";
			this.btnOK.Size = new System.Drawing.Size(75, 23);
			this.btnOK.TabIndex = 4;
			this.btnOK.Text = "查找";
			this.btnOK.UseVisualStyleBackColor = true;
			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
			// 
			// dtValue
			// 
			this.dtValue.Location = new System.Drawing.Point(85, 38);
			this.dtValue.Name = "dtValue";
			this.dtValue.Size = new System.Drawing.Size(121, 21);
			this.dtValue.TabIndex = 5;
			this.dtValue.Visible = false;
			// 
			// GridFindForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
			this.ClientSize = new System.Drawing.Size(285, 95);
			this.Controls.Add(this.dtValue);
			this.Controls.Add(this.btnOK);
			this.Controls.Add(this.txtValue);
			this.Controls.Add(this.cbFindItem);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label1);
			this.Name = "GridFindForm";
			this.Text = "查找";
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.ComboBox cbFindItem;
		private System.Windows.Forms.TextBox txtValue;
		private System.Windows.Forms.Button btnOK;
		private System.Windows.Forms.DateTimePicker dtValue;
	}
}

⌨️ 快捷键说明

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