Search Results

1
vote

Setting an Event handler without doing it manually in the classname.designer.cs file

Sure. Use myControl.Event += new EventHandler(SomeHandlerMethodInYourClass) somewhere during initialization, e.g. in the form's constructor. …