Click here to Skip to main content
15,883,745 members
Articles / Programming Languages / C#
Article

FlowPanel

Rate me:
Please Sign up or sign in to vote.
1.86/5 (7 votes)
17 May 2003 79.4K   907   24   2
Horizontal-vertical layout control

Image 1

Introduction

In many dialogs and forms I use internal panels, which simply layouts controls in one direction - vertical or horizontal. The most common example - OK, Cancel, Help buttons at the bottom (or at the right side) of a dialog. So I need an easy way to create such internal panel with vertical or horizontal layout.

Background

FlowPanel class extends UserControl functionality by providing custom layout implementation. This implementation layouts contained controls vertically or horizontally (direction must be predefined) into equal cells. Layout implementation takes into account Anchor and Dock styles (stretches controls in their cells according to these values).

Using the code

FlowPanel can be created with one line of code - constructor accepts panel name, layout direction, space size between controls, optional controls. Below is the example of horizontal panel with three buttons.

C#
Button ok, cancel, help;
FlowPanel flow = new FlowPanel(
    FlowPanel.Orientations.Horizontal,
    5,
    ok=new Button(),
    cancel=new Button(),
    help=new Button());

Notes

When panel size is too small to fit all controls, layout implementation produces undetermined output. Maybe some kind of control shrinking could be applied in this case.

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
Lithuania Lithuania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralSuggestion Pin
dog_spawn18-May-03 5:45
dog_spawn18-May-03 5:45 
GeneralRe: Suggestion Pin
Gytis Jakutonis18-May-03 20:43
Gytis Jakutonis18-May-03 20:43 

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.