namespace DataSetDemo1
{
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.cboTable = new System.Windows.Forms.ComboBox();
this.btnSelect = new System.Windows.Forms.Button();
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(16, 24);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(77, 12);
this.label1.TabIndex = 0;
this.label1.Text = "請選擇資料表";
//
// cboTable
//
this.cboTable.FormattingEnabled = true;
this.cboTable.Location = new System.Drawing.Point(93, 22);
this.cboTable.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.cboTable.Name = "cboTable";
this.cboTable.Size = new System.Drawing.Size(92, 20);
this.cboTable.TabIndex = 1;
//
// btnSelect
//
this.btnSelect.Location = new System.Drawing.Point(192, 18);
this.btnSelect.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnSelect.Name = "btnSelect";
this.btnSelect.Size = new System.Drawing.Size(56, 24);
this.btnSelect.TabIndex = 2;
this.btnSelect.Text = "查詢";
this.btnSelect.UseVisualStyleBackColor = true;
this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Location = new System.Drawing.Point(18, 58);
this.dataGridView1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowTemplate.Height = 27;
this.dataGridView1.Size = new System.Drawing.Size(492, 174);
this.dataGridView1.TabIndex = 3;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(531, 248);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.btnSelect);
this.Controls.Add(this.cboTable);
this.Controls.Add(this.label1);
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
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.ComboBox cboTable;
private System.Windows.Forms.Button btnSelect;
private System.Windows.Forms.DataGridView dataGridView1;
}
}