namespace SampleProgram { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.textBox1 = new System.Windows.Forms.TextBox(); this.textBox2 = new System.Windows.Forms.TextBox(); this.textBox3 = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.addrow_button = new System.Windows.Forms.Button(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.button1 = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.SuspendLayout(); // // textBox1 // this.textBox1.Location = new System.Drawing.Point(87, 12); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(100, 20); this.textBox1.TabIndex = 1; this.textBox1.Text = "DELL"; // // textBox2 // this.textBox2.Location = new System.Drawing.Point(87, 38); this.textBox2.Name = "textBox2"; this.textBox2.Size = new System.Drawing.Size(100, 20); this.textBox2.TabIndex = 2; this.textBox2.Text = "12"; // // textBox3 // this.textBox3.Location = new System.Drawing.Point(87, 65); this.textBox3.Name = "textBox3"; this.textBox3.Size = new System.Drawing.Size(100, 20); this.textBox3.TabIndex = 3; this.textBox3.Text = "23.23"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(10, 15); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(71, 13); this.label1.TabIndex = 4; this.label1.Text = "Row[0] (Text)"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(19, 41); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(62, 13); this.label2.TabIndex = 5; this.label2.Text = "Row[1] (Int)"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(8, 68); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(73, 13); this.label3.TabIndex = 6; this.label3.Text = "Row[2] (Float)"; // // addrow_button // this.addrow_button.Location = new System.Drawing.Point(193, 10); this.addrow_button.Name = "addrow_button"; this.addrow_button.Size = new System.Drawing.Size(75, 23); this.addrow_button.TabIndex = 7; this.addrow_button.Text = "Add Row"; this.addrow_button.UseVisualStyleBackColor = true; this.addrow_button.Click += new System.EventHandler(this.addrow_button_Click); // // dataGridView1 // this.dataGridView1.AllowUserToAddRows = false; this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Location = new System.Drawing.Point(12, 103); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.Size = new System.Drawing.Size(413, 231); this.dataGridView1.TabIndex = 11; // // button1 // this.button1.Location = new System.Drawing.Point(305, 58); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(120, 23); this.button1.TabIndex = 12; this.button1.Text = "Open Binding Form"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(437, 346); this.Controls.Add(this.button1); this.Controls.Add(this.dataGridView1); this.Controls.Add(this.addrow_button); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.textBox3); this.Controls.Add(this.textBox2); this.Controls.Add(this.textBox1); this.Name = "Form1"; this.Text = "Sample App For Custom Columns"; ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.TextBox textBox2; private System.Windows.Forms.TextBox textBox3; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.Button addrow_button; private System.Windows.Forms.DataGridView dataGridView1; private System.Windows.Forms.Button button1; } }