|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Announcements
Chapters
Services
Feature Zones
|
Note: This is an unedited contribution. If this article is inappropriate,
needs attention or copies someone else's work without reference then please
Report This Article
IntroductionThere are two interesting components which I noticed in the Windows Forms Toolbox (Visual Studio 2005), which I would like to point out here.
This is apart from the regular 'Panel' control that is included with the previous versions also.
Both of these controls give tremendous control and ease in placing the controls properly and in an orderly fashion on the form. FlowLayoutPanelIn the FlowLayoutPanel, whatever controls that you place in the panel, will rearrange itself to right of the previous control, in a flowing model. If the right side of the previous control does not have enough space, it would wrap itself to the next available space at the bottom. I found this to be very useful while placing many triplets of label->textbox->button controls one below the other and close to each other. See a screehshot to get a feel of it in action.
It takes 4 enum values viz. The automatic wrapping functionality as I explained earlier also can be set by a property called 'WrapContents'. This is boolean field. Default is set to true. TableLayoutPanelIn TableLayoutPanel, the arrangement is in a tabular format as the name itself suggests. When you add a control to a cell of the table, it would reposition itself to the center of the cell. One cell of the table will take only one control. You can add as many rows/columns to the layout. This is extremely useful while placing multitudes of controls on a form in a correct and orderly fashion. This avoids the main headache while designing a form when it comes to inserting some controls in between the existing controls and you have to sit and re-align all the remaining controls that got affected.
You can manually set the columns and rows the panel should hold by setting the 'ColumnCount' and 'RowCount' properties respectively. The context menu also supports adding and removing columns and rows.
ConclusionThe Layout feature in the latest Visual Studio 2005 is an excellent addition which gives very good control on how the controls are placed on the form and Microsoft has done a tremendous job in bringing it to the design time.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||