[Resolved] Creating event handlers at runtime
I am writing a C# app that creates menu items dynamically. I need to create some events for these menus at runtime. Each one of these menu items can be run through the same function, I just need to hook up a click event at runtime. (i.e. they can all run through the same basic event handler and I can create the appropriate function to handle them all.) I just need to know how to create a single event handler for all of them or create individual click events for each menu item. if you can help... thanks in advance.