namespace SampleProgram { partial class FormWithBinding { /// /// 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.addrow_button = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.textBox3 = new System.Windows.Forms.TextBox(); this.textBox2 = new System.Windows.Forms.TextBox(); this.textBox1 = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // addrow_button // this.addrow_button.Location = new System.Drawing.Point(195, 7); this.addrow_button.Name = "addrow_button"; this.addrow_button.Size = new System.Drawing.Size(75, 23); this.addrow_button.TabIndex = 14; this.addrow_button.Text = "Add Row"; this.addrow_button.UseVisualStyleBackColor = true; this.addrow_button.Click += new System.EventHandler(this.addrow_button_Click); // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(10, 65); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(73, 13); this.label3.TabIndex = 13; this.label3.Text = "Row[2] (Float)"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(21, 38); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(62, 13); this.label2.TabIndex = 12; this.label2.Text = "Row[1] (Int)"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 12); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(71, 13); this.label1.TabIndex = 11; this.label1.Text = "Row[0] (Text)"; // // textBox3 // this.textBox3.Location = new System.Drawing.Point(89, 62); this.textBox3.Name = "textBox3"; this.textBox3.Size = new System.Drawing.Size(100, 20); this.textBox3.TabIndex = 10; this.textBox3.Text = "23.23"; // // textBox2 // this.textBox2.Location = new System.Drawing.Point(89, 35); this.textBox2.Name = "textBox2"; this.textBox2.Size = new System.Drawing.Size(100, 20); this.textBox2.TabIndex = 9; this.textBox2.Text = "12"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(89, 9); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(100, 20); this.textBox1.TabIndex = 8; this.textBox1.Text = "DELL"; // // FormWithBinding // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(536, 403); 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 = "FormWithBinding"; this.Text = "FormWithBinding"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button addrow_button; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox textBox3; private System.Windows.Forms.TextBox textBox2; private System.Windows.Forms.TextBox textBox1; } }