Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Please explain in the windows form handles when raises and for what we use them
for example me.load handles raise when win form preparing to show
please explain other handles for example say what is different between me.Shown and me.load handles
Posted
Updated 6-Jun-17 10:00am

The 'Handles' you refer to are actually events - the methods with the Handles appended are the methods that handle the events.

The Load event occurs when a form has finished loading. This means it has been created in memory. Until Show or ShowDialog is called (directly or indirectly) it will not be visible. The Shown event is raised when it is first actually shown.

For all classes that are in the framework, use MSDN and/or Object Viewer in VS to look up any events you are interested in.
 
Share this answer
 
please link the page on MSDN Aboute the handler of windows form
 
Share this answer
 
i found answer form Handles
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900