namespace UsingControlsSample { partial class UsingControlsSampleForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// 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.checkBox = new System.Windows.Forms.CheckBox(); this.SuspendLayout(); // // checkBox // this.checkBox.AutoSize = true; this.checkBox.Location = new System.Drawing.Point(13, 13); this.checkBox.Name = "checkBox"; this.checkBox.Size = new System.Drawing.Size(88, 17); this.checkBox.TabIndex = 0; this.checkBox.Text = "Check me out"; this.checkBox.ThreeState = true; this.checkBox.CheckedChanged += new System.EventHandler(this.checkBox_CheckedChanged); // // UsingControlsSampleForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(193, 96); this.Controls.Add(this.checkBox); this.Name = "UsingControlsSampleForm"; this.Text = "Using Controls Sample"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.CheckBox checkBox; } }