namespace DataBindingFundamentalsSample { partial class TheLandBeforeDataBindingForm { /// /// 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.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.nameTextBox = new System.Windows.Forms.TextBox(); this.winsTextBox = new System.Windows.Forms.TextBox(); this.addWinButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // 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(34, 13); this.label1.TabIndex = 0; this.label1.Text = "Name:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(10, 41); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(30, 13); this.label2.TabIndex = 1; this.label2.Text = "Wins:"; // // nameTextBox // this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.nameTextBox.Location = new System.Drawing.Point(54, 12); this.nameTextBox.Name = "nameTextBox"; this.nameTextBox.Size = new System.Drawing.Size(152, 20); this.nameTextBox.TabIndex = 2; // // winsTextBox // this.winsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.winsTextBox.Location = new System.Drawing.Point(54, 38); this.winsTextBox.Name = "winsTextBox"; this.winsTextBox.Size = new System.Drawing.Size(152, 20); this.winsTextBox.TabIndex = 3; // // addWinButton // this.addWinButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.addWinButton.Location = new System.Drawing.Point(131, 64); this.addWinButton.Name = "addWinButton"; this.addWinButton.Size = new System.Drawing.Size(75, 23); this.addWinButton.TabIndex = 4; this.addWinButton.Text = "Add Win"; this.addWinButton.Click += new System.EventHandler(this.addWinButton_Click); // // TheLandBeforeDataBindingForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(218, 96); this.Controls.Add(this.addWinButton); this.Controls.Add(this.winsTextBox); this.Controls.Add(this.nameTextBox); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "TheLandBeforeDataBindingForm"; this.Text = "Before Data Binding"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox nameTextBox; private System.Windows.Forms.TextBox winsTextBox; private System.Windows.Forms.Button addWinButton; } }