namespace TransactionDemo1
{
partial class Form1
{
///
/// 設計工具所需的變數。
///
private System.ComponentModel.IContainer components = null;
///
/// 清除任何使用中的資源。
///
/// 如果應該處置 Managed 資源則為 true,否則為 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form 設計工具產生的程式碼
///
/// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器
/// 修改這個方法的內容。
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtMyId = new System.Windows.Forms.TextBox();
this.txtIncomeId = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtIncomeMoney = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(38, 43);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(67, 15);
this.label1.TabIndex = 0;
this.label1.Text = "你的帳號";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(38, 96);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(67, 15);
this.label2.TabIndex = 0;
this.label2.Text = "轉入帳號";
//
// txtMyId
//
this.txtMyId.Location = new System.Drawing.Point(111, 40);
this.txtMyId.Name = "txtMyId";
this.txtMyId.Size = new System.Drawing.Size(100, 25);
this.txtMyId.TabIndex = 0;
//
// txtIncomeId
//
this.txtIncomeId.Location = new System.Drawing.Point(111, 93);
this.txtIncomeId.Name = "txtIncomeId";
this.txtIncomeId.Size = new System.Drawing.Size(100, 25);
this.txtIncomeId.TabIndex = 1;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(234, 96);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(67, 15);
this.label4.TabIndex = 0;
this.label4.Text = "轉入金額";
//
// txtIncomeMoney
//
this.txtIncomeMoney.Location = new System.Drawing.Point(307, 93);
this.txtIncomeMoney.Name = "txtIncomeMoney";
this.txtIncomeMoney.Size = new System.Drawing.Size(100, 25);
this.txtIncomeMoney.TabIndex = 2;
//
// button1
//
this.button1.Location = new System.Drawing.Point(451, 34);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 32);
this.button1.TabIndex = 4;
this.button1.Text = "轉帳";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(38, 160);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(67, 15);
this.label5.TabIndex = 0;
this.label5.Text = "帳戶明細";
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Location = new System.Drawing.Point(111, 160);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowTemplate.Height = 27;
this.dataGridView1.Size = new System.Drawing.Size(415, 150);
this.dataGridView1.TabIndex = 5;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(581, 332);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.button1);
this.Controls.Add(this.txtIncomeId);
this.Controls.Add(this.txtIncomeMoney);
this.Controls.Add(this.txtMyId);
this.Controls.Add(this.label5);
this.Controls.Add(this.label2);
this.Controls.Add(this.label4);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtMyId;
private System.Windows.Forms.TextBox txtIncomeId;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtIncomeMoney;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.DataGridView dataGridView1;
}
}