You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

198 lines
9.5 KiB

namespace ManagementSystem
{
partial class PickAccountingSubject
{
/// <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.txtAccountingSubID = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtAccountingSubName = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.dgvDataMaintain = new System.Windows.Forms.DataGridView();
this.cAccountingSubID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cAccountingSubName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.btnClose = new System.Windows.Forms.Button();
this.btnPick = new System.Windows.Forms.Button();
this.btnSearch = new System.Windows.Forms.Button();
this.btnClean = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).BeginInit();
this.SuspendLayout();
//
// txtAccountingSubID
//
this.txtAccountingSubID.Location = new System.Drawing.Point(100, 12);
this.txtAccountingSubID.Name = "txtAccountingSubID";
this.txtAccountingSubID.Size = new System.Drawing.Size(205, 29);
this.txtAccountingSubID.TabIndex = 6;
this.txtAccountingSubID.TextChanged += new System.EventHandler(this.txtAccountingSubID_TextChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(327, 15);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 20);
this.label2.TabIndex = 8;
this.label2.Text = "會計科目:";
//
// txtAccountingSubName
//
this.txtAccountingSubName.Location = new System.Drawing.Point(410, 12);
this.txtAccountingSubName.Name = "txtAccountingSubName";
this.txtAccountingSubName.Size = new System.Drawing.Size(205, 29);
this.txtAccountingSubName.TabIndex = 7;
this.txtAccountingSubName.TextChanged += new System.EventHandler(this.txtAccountingSubName_TextChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(89, 20);
this.label1.TabIndex = 9;
this.label1.Text = "科目編號:";
//
// dgvDataMaintain
//
this.dgvDataMaintain.AllowUserToAddRows = false;
this.dgvDataMaintain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvDataMaintain.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvDataMaintain.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.cAccountingSubID,
this.cAccountingSubName});
this.dgvDataMaintain.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
this.dgvDataMaintain.Location = new System.Drawing.Point(4, 48);
this.dgvDataMaintain.Margin = new System.Windows.Forms.Padding(5);
this.dgvDataMaintain.MultiSelect = false;
this.dgvDataMaintain.Name = "dgvDataMaintain";
this.dgvDataMaintain.RowTemplate.Height = 24;
this.dgvDataMaintain.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvDataMaintain.Size = new System.Drawing.Size(609, 256);
this.dgvDataMaintain.TabIndex = 12;
this.dgvDataMaintain.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDataMaintain_CellDoubleClick);
//
// cAccountingSubID
//
this.cAccountingSubID.DataPropertyName = "AccountingSubID";
this.cAccountingSubID.HeaderText = "科目代號";
this.cAccountingSubID.Name = "cAccountingSubID";
this.cAccountingSubID.Width = 150;
//
// cAccountingSubName
//
this.cAccountingSubName.DataPropertyName = "AccountingSubName";
this.cAccountingSubName.HeaderText = "科目名稱";
this.cAccountingSubName.Name = "cAccountingSubName";
this.cAccountingSubName.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.cAccountingSubName.Width = 300;
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(538, 312);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 32);
this.btnClose.TabIndex = 13;
this.btnClose.Text = "關 閉";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnPick
//
this.btnPick.Location = new System.Drawing.Point(295, 312);
this.btnPick.Name = "btnPick";
this.btnPick.Size = new System.Drawing.Size(75, 32);
this.btnPick.TabIndex = 13;
this.btnPick.Text = "選 擇";
this.btnPick.UseVisualStyleBackColor = true;
this.btnPick.Click += new System.EventHandler(this.btnPick_Click);
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(376, 312);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(75, 32);
this.btnSearch.TabIndex = 13;
this.btnSearch.Text = "查 詢";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// btnClean
//
this.btnClean.Location = new System.Drawing.Point(457, 312);
this.btnClean.Name = "btnClean";
this.btnClean.Size = new System.Drawing.Size(75, 32);
this.btnClean.TabIndex = 13;
this.btnClean.Text = "清 除";
this.btnClean.UseVisualStyleBackColor = true;
this.btnClean.Click += new System.EventHandler(this.btnClean_Click);
//
// PickAccountingSubject
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(627, 348);
this.ControlBox = false;
this.Controls.Add(this.btnClean);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.btnPick);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.dgvDataMaintain);
this.Controls.Add(this.txtAccountingSubName);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtAccountingSubID);
this.Controls.Add(this.label1);
this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.Margin = new System.Windows.Forms.Padding(5);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PickAccountingSubject";
this.Text = "會計科目選擇";
this.Load += new System.EventHandler(this.PickAccountingSubject_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.DataGridView dgvDataMaintain;
public System.Windows.Forms.TextBox txtAccountingSubName;
public System.Windows.Forms.TextBox txtAccountingSubID;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnPick;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.Button btnClean;
private System.Windows.Forms.DataGridViewTextBoxColumn cAccountingSubID;
private System.Windows.Forms.DataGridViewTextBoxColumn cAccountingSubName;
}
}