Click here to Skip to main content
16,004,974 members
Articles / Desktop Programming / MFC
Article

An Overview of New Control Containers in Whidbey – Panels

Rate me:
Please Sign up or sign in to vote.
2.68/5 (14 votes)
16 May 20046 min read 86.3K   915   12   6
This article is based on a pre-release version of Microsoft Visual Studio 2005, formerly code-named “Whidbey”. All information contained herein is subject to change.

Sample Image - Whidbey_ControlContainers.jpg

Introduction

This article is based on a pre-release version of Microsoft Visual Studio 2005, formerly code-named “Whidbey.” All information contained herein is subject to change.

This article discusses:

Different control container panels such as FlowLayout Panel, TableLayout panel and SplitContainer control.

This article uses the following technologies:

  • VB.NET
  • Windows Forms

Whidbey is to include a wealth of improvements to make programmers more productive and help them build more robust applications. Panel container controls allows you to arrange or reposition your child controls on your form easily. AutoSize property of the control lets you tell the control that it should resize to properly contain its contents – so Buttons and Labels will expand if the text within them expands, Forms will grow larger if controls within it grow, etc.

There are three types of remote objects are used in .NET Remoting environment.

  1. FlowLayoutPanel Class
  2. TableLayoutPanel Class
  3. SplitContainer Control Class

FlowLayoutPanel Class

FlowLayOutPanel control allows you to add child controls, which dynamically repositioned to flow in a particular direction. FLowLayoutPanel class implements FlowPanel class. It arranges all the child controls in the FlowLayoutPanel bound, in a flowing fashion, just like HTML.

The figure 1 shows the FlowLayoutPanel filled with TextBox controls properties. You can see how controls are laid out within your UI, such as anchoring and docking.

Image 1

Figure 1 FlowLayOutPanel are laid out in your UI

Based on its FlowDirection property, the controls will be repositioned to a particular direction. Flow direction can be controlled, as well as wrapping within the panel. A sample property window is shown in Figure 2.

Image2.JPG

Figure 2 FlowDirection properties of FlowLayOutPanel

Some of the properties associated with the FlowLayoutPanel class are listed below:

  • FlowDirection

    FlowDirection property of FlowLayoutPanel allows you to align or automatically positions child controls in a specified direction.

    The properties of FlowDirection property are listed below:

    1. LeftToRight - All the child controls are automatically positioned in left to right direction. A sample form for which FlowLayOutPanelis laid out using the LeftToRight FlowDirection property is shown in Figure 3.

      Image3.JPG

      Figure 3 FlowLayOutPanel are laid out using the LeftToRight FlowDirection property
    2. TopDown

      All the child controls are automatically positioned in top to down direction. A sample form for which FlowLayOutPanel is laid out using the TopDown FlowDirection property is shown in Figure 4.

      Image4.JPG

      Figure 4 FlowLayOutPanel are laid out using the TopDown FlowDirection property
    3. RightToLeft

      All the child controls are automatically positioned in right to left direction. A sample form for which FlowLayOutPanel is laid out using the RightToLeft FlowDirection property is shown in Figure 5.

      Image5.JPG

      Figure 5 FlowLayOutPanel are laid out using the RightToLeft FlowDirection property
    4. BottomUp

      All the child controls are automatically positioned in bottom to up direction. A sample form for which FlowLayOutPanel is laid out using the BottomUp FlowDirection property is shown in Figure 6.

      Image6.JPG

      Figure 6 FlowLayOutPanel are laid out using the BottomUp FlowDirection property

      Note: When one of the child controls is increased in size, the child controls are moved based on the flow direction.

  • WrapContents

    WrapContents property allows staying within the boundaries of the SplitContainer class by starting a new row or column, depending on the value of the FlowDirection property. The default property of the WrapContents property is true. It is just like word-wrap property in VB 6.0.

TableLayoutPanel Class

TableLayOutPanel control allows all the child controls repositioned in a table format or lays out UI that fits well into a grid pattern, which can specify rows and columns sizes being absolutely or proportionally. So, all the child controls' repositioning will be based on the column and row size. In other words, it sets to auto size based on the contents of the column or row. It maintains a structured approach to repositioning child controls. It implicitly positions child controls in a table format, which, assuming default values of 0 for both Columns and Rows, mimics a TableLayoutPanel instance with FlowDirection set to Horizontal and WrapContents set to true.

Uses

  • A dialog box resizable during run time, which allows aligning and stretching within the cells.
  • It is also useful when generating user forms at run-time.

Some of the properties associated with the TableLayoutPanel class are listed below.

  • ColumnCount

    ColumnCount property allows you to specify the number of columns for child controls. A sample form for TableLayoutPanel are laid out using the one column and two columns is shown in Figure 7.

    Image7.JPG

    Figure 7 TableLayoutPanel are laid out using the one column and two columns
  • RowCount

    RowCount property allows you to specify the number of rows for child controls.

    Image8.JPG

    Figure 7 TableLayoutPanel are laid out using the one column and two columns
  • GrowStyle

    GrowStyle property allows you to set the row or column add property dynamically while you added child controls on your TableLayoutPanel. This includes three enumeration values such as FixedSize, AddRows and AddColumns. With these attributes, it is possible set the dynamic row or column movement status.

    Image9.JPG

    Figure 8 TableLayoutPanel are laid out using the one column and two columns

    The FixedSize enumeration doesn't allow you to add a new child control in a new row or column. The AddRows enumeration allows you to add child control in a new row automatically while you added onto the TableLayoutPanel. The AddColumns enumeration allows you to add child control in a new column automatically while you added control onto TableLayoutPanel.

  • ColumnStyles

    ColumnStyles property allows you to set the column style properties such as height, SizeType etc. of a TableLayoutPanel rows. The following figure 9 shows the ColumnStyle Collection Editor window.

    Image10.JPG

    Figure 9 ColumnStyle Collection Editor
  • RowStyles

    RowStyles property allows you to set the row style properties such as height, SizeType etc. of a TableLayoutPanel rows.

    The SizeType property has different attributes such as AutoSize, Absolute or percent values. The SizeType implements the class System.Windows.Forms.RowStyle in Whidbey.

SplitContainer control

The SplitContainer control allows you to set all the child controls that could share a vertical and horizontal space. The following figure 10 shows how to combine several controls and docking settings commonly used in a single composite control.

Image11.JPG

Figure 10 How SplitterControl container handles different child controls

The namespace to include this control is System.Windows.Forms.

Some of the properties associated with the SplitContainer control are listed below.

  • FixedPanel

    FixedPanel property allows you to select which panel in the control should not resize as the SplitContainer instance resizes.

  • SplitterDistance and Orientation

    SplitterDistance and Orientation properties allow you to set the control the direction and starting location of the splitter bar.

  • Panel1MinSize and Panel2MinSize

    Panel1MinSize and Panel2MinSize properties are used to specify the minimum size of the SplitterPanel instances in the SplitContainer, effectively controlling how close the splitter bar can be placed to either edge of the control.

Conclusion

In this article, I have described some of the inbound controls using in Whidbey such as FlowLayoutPanel, TableLayoutPanel and SplitterControl etc. In my opinion, the best you make through writing codes in your own way. The example code for this article provides you look on the form view using the above controls.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
Binoy is a software developer of Information Technology Division in Memphis,TN.

Comments and Discussions

 
GeneralDoes not work wint Win 7 64-bit Pin
rwg18-Nov-09 11:53
professionalrwg18-Nov-09 11:53 
QuestionHow To Get "Row Selected" Pin
Alexis Blaze20-Feb-07 3:45
Alexis Blaze20-Feb-07 3:45 
GeneralAdding Forms to a Splitcontainer Control Pin
Anonymous18-Apr-05 0:17
Anonymous18-Apr-05 0:17 
GeneralRe: Adding Forms to a Splitcontainer Control Pin
Franz Pentenrieder15-May-05 6:12
Franz Pentenrieder15-May-05 6:12 
GeneralRe: Adding Forms to a Splitcontainer Control Pin
mdunham29-Jun-05 6:59
mdunham29-Jun-05 6:59 
GeneralRe: Adding Forms to a Splitcontainer Control Pin
ocack18-Jun-07 4:24
ocack18-Jun-07 4:24 
Just put the rf Form TopLevel property to false;

But, i have some trouble when i enter into rhe control of the form !

In a text box for example, when i clik into, the cursor is place in the start of text instead of the end ?!

Can you test it ?

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.