In VB.NET I can do
private sub button_click(sender, e) handles Button1.Click, Button2.Click etc... do something... end sub
Manually, you can do this:
button1.Click += button_Click; button2.Click += button_Click; ...
In the Designer, the Click event property is actually a drop-down menu where you can choose among existing methods that have the appropriate signature.