Load like event in Windows Forms for any control like textbox, checkbox?
问题 In Windows Forms when a UserControl or Form first time becomes visible the Load event is fired. http://msdn.microsoft.com/en-us/library/system.windows.forms.usercontrol.load.aspx Is there any such event for controls like Checkbox, TextBox, Label ? 回答1: No. You could use the HandleCreated event, it is fired when the native window for the control is created. The first event you can rely on to run after the class constructor ran. It is triggered when the parent adds the control to its Controls