partial class VisualInheritanceTestForm { /// /// 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.learnProgramButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // learnProgramButton // this.learnProgramButton.Font = new System.Drawing.Font( "Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ( ( byte ) ( 0 ) ) ); this.learnProgramButton.Location = new System.Drawing.Point( 160, 81 ); this.learnProgramButton.Name = "learnProgramButton"; this.learnProgramButton.Size = new System.Drawing.Size( 130, 59 ); this.learnProgramButton.TabIndex = 12; this.learnProgramButton.Text = "Learn the Program"; this.learnProgramButton.Click += new System.EventHandler( this.learnProgramButton_Click ); // // VisualInheritanceTestForm // this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F ); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size( 309, 200 ); this.Controls.Add( this.learnProgramButton ); this.Name = "VisualInheritanceTestForm"; this.Text = "Visual Test"; this.Controls.SetChildIndex( this.learnProgramButton, 0 ); this.ResumeLayout( false ); } #endregion private System.Windows.Forms.Button learnProgramButton; } /************************************************************************** * (C) Copyright 1992-2006 by Deitel & Associates, Inc. and * * Pearson Education, Inc. All Rights Reserved. * * * * DISCLAIMER: The authors and publisher of this book have used their * * best efforts in preparing the book. These efforts include the * * development, research, and testing of the theories and programs * * to determine their effectiveness. The authors and publisher make * * no warranty of any kind, expressed or implied, with regard to these * * programs or to the documentation contained in these books. The authors * * and publisher shall not be liable in any event for incidental or * * consequential damages in connection with, or arising out of, the * * furnishing, performance, or use of these programs. * *************************************************************************/