namespace RelationsDemo1
{
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.dgvCategory = new System.Windows.Forms.DataGridView();
this.dgvProduct = new System.Windows.Forms.DataGridView();
((System.ComponentModel.ISupportInitialize)(this.dgvCategory)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dgvProduct)).BeginInit();
this.SuspendLayout();
//
// dgvCategory
//
this.dgvCategory.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvCategory.Location = new System.Drawing.Point(22, 12);
this.dgvCategory.Name = "dgvCategory";
this.dgvCategory.RowTemplate.Height = 27;
this.dgvCategory.Size = new System.Drawing.Size(240, 150);
this.dgvCategory.TabIndex = 0;
//
// dgvProduct
//
this.dgvProduct.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvProduct.Location = new System.Drawing.Point(22, 190);
this.dgvProduct.Name = "dgvProduct";
this.dgvProduct.RowTemplate.Height = 27;
this.dgvProduct.Size = new System.Drawing.Size(240, 150);
this.dgvProduct.TabIndex = 1;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(422, 350);
this.Controls.Add(this.dgvProduct);
this.Controls.Add(this.dgvCategory);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvCategory)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dgvProduct)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dgvCategory;
private System.Windows.Forms.DataGridView dgvProduct;
}
}