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

📄 accountbookform.designer.cs

📁 《C#和.NET第一步》中的财务系统 利用三层结构做的
💻 CS
字号:
namespace HomeMoney
{
	partial class AccountBookForm
	{
		/// <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()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AccountBookForm));
			this.pictureTitle = new System.Windows.Forms.PictureBox();
			this.btnCancel = new System.Windows.Forms.Button();
			this.btnOk = new System.Windows.Forms.Button();
			this.gbBox = new System.Windows.Forms.GroupBox();
			this.lblMoneyType = new System.Windows.Forms.Label();
			this.cbMoneyType = new System.Windows.Forms.ComboBox();
			this.lblType = new System.Windows.Forms.Label();
			this.lblName = new System.Windows.Forms.Label();
			this.lblRemark = new System.Windows.Forms.Label();
			this.txtRemark = new System.Windows.Forms.TextBox();
			this.cbType = new System.Windows.Forms.ComboBox();
			this.txtName = new System.Windows.Forms.TextBox();
			((System.ComponentModel.ISupportInitialize)(this.pictureTitle)).BeginInit();
			this.gbBox.SuspendLayout();
			this.SuspendLayout();
			// 
			// pictureTitle
			// 
			this.pictureTitle.BackColor = System.Drawing.Color.Transparent;
			this.pictureTitle.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureTitle.BackgroundImage")));
			this.pictureTitle.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
			this.pictureTitle.Location = new System.Drawing.Point(1, 0);
			this.pictureTitle.Name = "pictureTitle";
			this.pictureTitle.Size = new System.Drawing.Size(45, 43);
			this.pictureTitle.TabIndex = 12;
			this.pictureTitle.TabStop = false;
			// 
			// btnCancel
			// 
			this.btnCancel.BackgroundImage = global::HomeMoney.Properties.Resources.SpeedItemButtonHot;
			this.btnCancel.Location = new System.Drawing.Point(193, 160);
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.Size = new System.Drawing.Size(75, 23);
			this.btnCancel.TabIndex = 14;
			this.btnCancel.Text = "取消";
			this.btnCancel.UseVisualStyleBackColor = true;
			// 
			// btnOk
			// 
			this.btnOk.BackColor = System.Drawing.Color.Cornsilk;
			this.btnOk.BackgroundImage = global::HomeMoney.Properties.Resources.SpeedItemButtonHot;
			this.btnOk.Location = new System.Drawing.Point(100, 160);
			this.btnOk.Name = "btnOk";
			this.btnOk.Size = new System.Drawing.Size(75, 23);
			this.btnOk.TabIndex = 13;
			this.btnOk.Text = "确定";
			this.btnOk.UseVisualStyleBackColor = false;
			this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
			// 
			// gbBox
			// 
			this.gbBox.Controls.Add(this.txtName);
			this.gbBox.Controls.Add(this.cbType);
			this.gbBox.Controls.Add(this.txtRemark);
			this.gbBox.Controls.Add(this.lblRemark);
			this.gbBox.Controls.Add(this.lblName);
			this.gbBox.Controls.Add(this.lblType);
			this.gbBox.Controls.Add(this.cbMoneyType);
			this.gbBox.Controls.Add(this.lblMoneyType);
			this.gbBox.Location = new System.Drawing.Point(51, 25);
			this.gbBox.Name = "gbBox";
			this.gbBox.Size = new System.Drawing.Size(256, 124);
			this.gbBox.TabIndex = 15;
			this.gbBox.TabStop = false;
			// 
			// lblMoneyType
			// 
			this.lblMoneyType.AutoSize = true;
			this.lblMoneyType.Location = new System.Drawing.Point(5, 25);
			this.lblMoneyType.Name = "lblMoneyType";
			this.lblMoneyType.Size = new System.Drawing.Size(29, 12);
			this.lblMoneyType.TabIndex = 0;
			this.lblMoneyType.Text = "币种";
			// 
			// cbMoneyType
			// 
			this.cbMoneyType.FormattingEnabled = true;
			this.cbMoneyType.Items.AddRange(new object[] {
            "人民币",
            "美元",
            "港币"});
			this.cbMoneyType.Location = new System.Drawing.Point(64, 17);
			this.cbMoneyType.Name = "cbMoneyType";
			this.cbMoneyType.Size = new System.Drawing.Size(121, 20);
			this.cbMoneyType.TabIndex = 1;
			this.cbMoneyType.Text = "人民币";
			// 
			// lblType
			// 
			this.lblType.AutoSize = true;
			this.lblType.Location = new System.Drawing.Point(5, 50);
			this.lblType.Name = "lblType";
			this.lblType.Size = new System.Drawing.Size(53, 12);
			this.lblType.TabIndex = 2;
			this.lblType.Text = "帐薄类型";
			// 
			// lblName
			// 
			this.lblName.AutoSize = true;
			this.lblName.Location = new System.Drawing.Point(5, 74);
			this.lblName.Name = "lblName";
			this.lblName.Size = new System.Drawing.Size(53, 12);
			this.lblName.TabIndex = 3;
			this.lblName.Text = "帐薄名称";
			// 
			// lblRemark
			// 
			this.lblRemark.AutoSize = true;
			this.lblRemark.Location = new System.Drawing.Point(5, 99);
			this.lblRemark.Name = "lblRemark";
			this.lblRemark.Size = new System.Drawing.Size(29, 12);
			this.lblRemark.TabIndex = 4;
			this.lblRemark.Text = "说明";
			// 
			// txtRemark
			// 
			this.txtRemark.Location = new System.Drawing.Point(64, 96);
			this.txtRemark.Name = "txtRemark";
			this.txtRemark.Size = new System.Drawing.Size(181, 21);
			this.txtRemark.TabIndex = 5;
			// 
			// cbType
			// 
			this.cbType.FormattingEnabled = true;
			this.cbType.Location = new System.Drawing.Point(64, 44);
			this.cbType.Name = "cbType";
			this.cbType.Size = new System.Drawing.Size(121, 20);
			this.cbType.TabIndex = 6;
			// 
			// txtName
			// 
			this.txtName.Location = new System.Drawing.Point(64, 71);
			this.txtName.Name = "txtName";
			this.txtName.Size = new System.Drawing.Size(100, 21);
			this.txtName.TabIndex = 7;
			// 
			// AccountBookForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.LemonChiffon;
			this.ClientSize = new System.Drawing.Size(357, 199);
			this.Controls.Add(this.gbBox);
			this.Controls.Add(this.btnCancel);
			this.Controls.Add(this.btnOk);
			this.Controls.Add(this.pictureTitle);
			this.Name = "AccountBookForm";
			this.Text = "账簿管理";
			this.Load += new System.EventHandler(this.AccountBookForm_Load);
			((System.ComponentModel.ISupportInitialize)(this.pictureTitle)).EndInit();
			this.gbBox.ResumeLayout(false);
			this.gbBox.PerformLayout();
			this.ResumeLayout(false);

		}

		#endregion

		private System.Windows.Forms.PictureBox pictureTitle;
		private System.Windows.Forms.Button btnCancel;
		private System.Windows.Forms.Button btnOk;
		private System.Windows.Forms.GroupBox gbBox;
		private System.Windows.Forms.TextBox txtRemark;
		private System.Windows.Forms.Label lblRemark;
		private System.Windows.Forms.Label lblName;
		private System.Windows.Forms.Label lblType;
		private System.Windows.Forms.ComboBox cbMoneyType;
		private System.Windows.Forms.Label lblMoneyType;
		private System.Windows.Forms.TextBox txtName;
		private System.Windows.Forms.ComboBox cbType;
	}
}

⌨️ 快捷键说明

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