- 1
I have this small code that when mouse over on a label it should change the font size etc....
private void label1_MouseHover(object sender, EventArgs e)
{
label1.Font = new Font("arial",18, FontStyle.Bold,GraphicsUnit.Pixel);
}
so it's work , but i want to return the default value to this label when i move the mouse again
- 2
how to make the button have default key that when i press it the button will do it's work ?
do any one have course about events ?