In my program, I have 9 buttons, and I have 9 separate event handlers for each of them, despite the fact that the code in each event handler is the same. It is proving to be very tedious to change the code for all of them. Is it possible to make a single Button.Click event handler that handles the Button.Click events for all of my buttons?
相关问题
- Generic Generics in Managed C++
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
- Bulk update SQL Server C#
- Should I use static function in c# where many call
You can modify the
Handles
clause on the VS generated event code so that it can process the same event for multiple controls. In most cases, someone might want to funnel most, but not all, button clicks to one procedure. To change the Handles clause:This can also be done dynamically, such as for controls which are created and added to a form in the Load event (or where ever):
To literately wire all buttons to the same event, you can loop thru the controls collection (uses Linq):
Where
XXXXX
might beMe
or a panel, groupbox etc - wherever the buttons are.You can wire your click events to one specific one. how you do it depends on the IDE you are using. if you are using Visual Studio then:
select a button control and press F4. This will open properties window for this control. In the events section (usually a little lightning icon) you can assign various events, which are supported by this particular control. Here you can select any specific or create your own event.
Here's how you could do it dynamically at run time so you don't have to write
AddHandler
for all the buttons:Of course, if this is too broad a stroke, you could put only the buttons you want to wire up to this event inside a panel, for example, and just loop throw the controls in
YourPanel.Controls
instead of the form. Or you could set the.Tag
property on each button to some value and only wire the handler when that value matches. Just a couple ways I can think of.