Size assignment to a control
C#
4
Posts
4
Posters
0
Views
1
Watching
-
at the form constructor in
InitComponents()
,the windows designer handwork ;) I hope you understand... By the way... visit http://nehe.gamedev.net[^] -
Look in the "Windows Form Designer Generated Code" Region. You'll find all the properties, that are not default values, of your controls are set in there. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
From Life Cycle point of view when the page's Initialise id called it in turn calls the init of all controls on that page. At this point the control is initialised with all its properties. And finally after all the controls the Page initialise gets over. Is this what u wanted. :confused: Ketty