Question: The statement that actually constructs or instantiates a Button object is: a. this.button1 = new System.Windows.Forms.Button( ); b. private System.Windows.Forms.Button button1; c. this.Controls.AddRange(this.button1); d. button1.Name
The statement that actually constructs or instantiates a Button object is:
a. this.button1 = new System.Windows.Forms.Button( );
b. private System.Windows.Forms.Button button1;
c. this.Controls.AddRange(this.button1);
d. button1.Name = "A button";
e. button1.Click += new System.EventHandler
(this.button1_Click);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
