Question: Create a simple windows Form, which has a button, on the click of the button a second form opens whose background is Pink Hint private
Hint
private void secondForm_Click(object sender, EventArgs e)
{
SecondForm s = new SecondForm ();
s.ShowDialog ();
}
Step by Step Solution
3.39 Rating (149 Votes )
There are 3 Steps involved in it
Solution Code Form1cs using System using SystemCollectionsGeneric using SystemComponentModel using S... View full answer
Get step-by-step solutions from verified subject matter experts
