FTest.Designer
namespace Test
{
partial class FTest
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param>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.gridProduct = new System.Windows.Forms.DataGridView();
this.btGetAll = new System.Windows.Forms.Button();
this.btAdd = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.tbProCode = new System.Windows.Forms.TextBox();
this.colProductId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colProductCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colProductName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colProductLine = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tbProName = new System.Windows.Forms.TextBox();
this.tbProLine = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.btUpdate = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.gridProduct)).BeginInit();
this.SuspendLayout();
//
// gridProduct
//
this.gridProduct.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.gridProduct.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.colProductId,
this.colProductCode,
this.colProductName,
this.colProductLine});
this.gridProduct.Location = new System.Drawing.Point(35, 30);
this.gridProduct.MultiSelect = false;
this.gridProduct.Name = "gridProduct";
this.gridProduct.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.gridProduct.Size = new System.Drawing.Size(715, 129);
this.gridProduct.TabIndex = 0;
this.gridProduct.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridProduct_CellClick);
//
// btGetAll
//
this.btGetAll.Location = new System.Drawing.Point(652, 165);
this.btGetAll.Name = "btGetAll";
this.btGetAll.Size = new System.Drawing.Size(75, 23);
this.btGetAll.TabIndex = 1;
this.btGetAll.Text = "Get All";
this.btGetAll.UseVisualStyleBackColor = true;
this.btGetAll.Click += new System.EventHandler(this.btGetAll_Click);
//
// btAdd
//
this.btAdd.Location = new System.Drawing.Point(267, 237);
this.btAdd.Name = "btAdd";
this.btAdd.Size = new System.Drawing.Size(75, 23);
this.btAdd.TabIndex = 2;
this.btAdd.Text = "Add";
this.btAdd.UseVisualStyleBackColor = true;
this.btAdd.Click += new System.EventHandler(this.btAdd_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 249);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(75, 13);
this.label1.TabIndex = 3;
this.label1.Text = "Product Name";
//
// tbProCode
//
this.tbProCode.Location = new System.Drawing.Point(103, 209);
this.tbProCode.Name = "tbProCode";
this.tbProCode.Size = new System.Drawing.Size(135, 20);
this.tbProCode.TabIndex = 4;
//
// colProductId
//
this.colProductId.DataPropertyName = "ProID";
this.colProductId.HeaderText = "Product ID";
this.colProductId.Name = "colProductId";
//
// colProductCode
//
this.colProductCode.DataPropertyName = "ProCode";
this.colProductCode.HeaderText = "Product Code";
this.colProductCode.Name = "colProductCode";
//
// colProductName
//
this.colProductName.DataPropertyName = "ProName";
this.colProductName.HeaderText = "Product Name";
this.colProductName.Name = "colProductName";
//
// colProductLine
//
this.colProductLine.DataPropertyName = "ProLine";
this.colProductLine.HeaderText = "Product Line";
this.colProductLine.Name = "colProductLine";
//
// tbProName
//
this.tbProName.Location = new System.Drawing.Point(103, 239);
this.tbProName.Name = "tbProName";
this.tbProName.Size = new System.Drawing.Size(135, 20);
this.tbProName.TabIndex = 5;
//
// tbProLine
//
this.tbProLine.Location = new System.Drawing.Point(103, 265);
this.tbProLine.Name = "tbProLine";
this.tbProLine.Size = new System.Drawing.Size(135, 20);
this.tbProLine.TabIndex = 6;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 216);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(72, 13);
this.label2.TabIndex = 7;
this.label2.Text = "Product Code";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 272);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(67, 13);
this.label3.TabIndex = 8;
this.label3.Text = "Product Line";
//
// btUpdate
//
this.btUpdate.Location = new System.Drawing.Point(267, 262);
this.btUpdate.Name = "btUpdate";
this.btUpdate.Size = new System.Drawing.Size(75, 23);
this.btUpdate.TabIndex = 9;
this.btUpdate.Text = "Update";
this.btUpdate.UseVisualStyleBackColor = true;
this.btUpdate.Click += new System.EventHandler(this.btUpdate_Click);
//
// FTest
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(762, 490);
this.Controls.Add(this.btUpdate);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.tbProLine);
this.Controls.Add(this.tbProName);
this.Controls.Add(this.tbProCode);
this.Controls.Add(this.label1);
this.Controls.Add(this.btAdd);
this.Controls.Add(this.btGetAll);
this.Controls.Add(this.gridProduct);
this.Name = "FTest";
this.Text = "Test_Oracle_SQL server";
this.Load += new System.EventHandler(this.FTest_Load);
((System.ComponentModel.ISupportInitialize)(this.gridProduct)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView gridProduct;
private System.Windows.Forms.Button btGetAll;
private System.Windows.Forms.Button btAdd;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox tbProCode;
private System.Windows.Forms.DataGridViewTextBoxColumn colProductId;
private System.Windows.Forms.DataGridViewTextBoxColumn colProductCode;
private System.Windows.Forms.DataGridViewTextBoxColumn colProductName;
private System.Windows.Forms.DataGridViewTextBoxColumn colProductLine;
private System.Windows.Forms.TextBox tbProName;
private System.Windows.Forms.TextBox tbProLine;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button btUpdate;
}
}
Bạn đang đọc truyện trên: Truyen247.Pro