hello friends, there is no ( Form_Activated Event ) in C#.Net. but vb,vb.net have this event. is there any alternate for form Activated event.
Form Activated Event in c#.Net
Collapse
X
-
Tags: None
-
Did you look at the events for forms? I would guess no.
There very much IS an Activated event on forms in C#.
Quick pick of a few events:
Activated() occurs when the form is activated(bad description on msdn's part)
Load() happens when you first load a form
Enter() happens when the form becomes selected (has the focus)Comment
Comment