tablelayoutpanel in c#.net in windows application
-
I want to create tablelayoutpanel at runtime ..and this functionality same like how this control is doing at design time..like control moving and rows and Columns resizing..How these control is working at design time same like i need to create at runtime. please any body know about this please tell me.. Thanks....
-
I want to create tablelayoutpanel at runtime ..and this functionality same like how this control is doing at design time..like control moving and rows and Columns resizing..How these control is working at design time same like i need to create at runtime. please any body know about this please tell me.. Thanks....
Create an object to TableLayoutPanel class and add it to your form. Go through the documentation to know what all properties are available. Set them and you are done.
The word "politics" describes the process so well: "Poli" in Latin meaning "many" and "tics" meaning "bloodsucking creatures." जय हिंद
-
I want to create tablelayoutpanel at runtime ..and this functionality same like how this control is doing at design time..like control moving and rows and Columns resizing..How these control is working at design time same like i need to create at runtime. please any body know about this please tell me.. Thanks....
Hi, All controls are created at run time and the code for controls that are "designed" within VS resides in the InitializeComponent method of the Form.designer.cs file. If you are not certain how to write code for a control then just create a test form using the control you want to learn about. Open up the designer.cs file and all will be revealed. The code you would write yourself will be very similar. Alan.