In Visual Basic I knew how to do it, but I’m new to C#, so can you guys tell me how do I make a “private void” with mouse hover that applies the same event to multiple controls? There’s an example:
private void button1, button2, button3, button4_MouseHover(object sender, EventArgs e)
{
btn.Image = pic
}
Just declare one event handler and point each button at it:
Then in code or designer: