private void large Toolstripmenuitem_click (object sender, EventArgs e)
{
This. Width = 600;
This. Height = 400;
Toolstripstatuslabel1.text = "large form";
}
private void in Toolstripmenuitem_click (object sender, EventArgs e)
{
This. Width = 300;
This. Height = 200;
Toolstripstatuslabel1.text = "Medium form";
}
private void small Toolstripmenuitem_click (object sender, EventArgs e)
{
This. Width = 150;
This. Height = 120;
Toolstripstatuslabel1.text = "small form";
}
private void Toolstripbutton1_click (object sender, EventArgs e)
{
This. Width = 600;
This. Height = 400;
Toolstripstatuslabel1.text = "large form";
}
private void Toolstripbutton2_click (object sender, EventArgs e)
{
This. Width = 300;
This. Height = 200;
Toolstripstatuslabel1.text = "Medium form";
}
private void Toolstripbutton3_click (object sender, EventArgs e)
{
This. Width = 150;
This. Height = 120;
Toolstripstatuslabel1.text = "small form";
}
}
}
C # Certification Exam questions compilation 3_1