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. …
0
votes

Writing to a TextBox from another thread?

Have a look at Control.BeginInvoke method. The point is to never update UI control …
1
vote

WinForms Control - Action after it is fully initialized

Have you tried wiring up to the form's Load event and doing the work there? (note this fires up every time you show the form...) …