Click here to Skip to main content
Licence 
First Posted 8 Oct 2004
Views 80,304
Bookmarked 28 times

Bringing Back FlowLayout to WinForms Controls

By | 8 Oct 2004 | Article
This article describes how to create a Panel that allows FlowLayout positioning for WinForms.

Sample Image - FlowLayoutPanel.jpg

Introduction

With the next Visual Studio being in Beta 2 and the FlowLayout supposedly making its comeback in said revision, this could very well be a day late and a dollar short, but I had need of it and thought I would share it anyway. The FlowLayout option for laying out your controls has been missing from .NET WinForms for sometime now. While many of us don't mind absolute positioning, it can get to be a bear (or at the very least annoying) when you want to add controls dynamically but don't want to worry about System.Drawing.Points or .Top and .Left properties.

Background

I'm currently implementing a thumbnail view and was anguished over the fact that there was no FlowLayout option for WinForms, and having Googled for FlowLayout controls and seeing a remarkable dearth of them, I decided to write my own and share it for general consumption.

Since I've posted this, I've enhanced it a little to include a LayoutStyle property that takes an enum for LayoutStyles.FlowLayout or LayoutStyles.GridLayout.

Usage

The FlowLayoutPanel is a small application with a custom control (FlowLayoutPanel.cs) that extends System.Windows.Forms.Panel and overrides:

protected override void OnLayout(LayoutEventArgs levent)

to handle FlowLayout behavior for the Panel.

It's straightforward and simple, with all the real work being done in the method above (code below). The download contains a solution from Visual Studio .NET 2003 that bundles an example application and the FlowLayoutPanel. Barring the addition of a LayoutStyle property, there is no significant difference in the usage between this and a standard Panel, except, of course, if the LayoutStyle property is set to LayoutStyles.FlowLayout, then adding a control via this.Controls.Add(someControl) or dragging and dropping in design mode positions the control automatically using FlowLayout characteristics.

protected override void OnLayout(LayoutEventArgs levent)
{
    if (this.LayoutStyle == LayoutStyles.FlowLayout) 
    {
      int nextTop = 0, nextLeft = 0;
      int maxHeight = 0, maxWidth = 0;
      int ParentWidth;
      if (this.Parent != null)
      {
          ParentWidth = this.Parent.Width;
      }
      else
      {
          ParentWidth = this.Width;
      }
      foreach(Control myControl in this.Controls)
      {
          myControl.Top = nextTop;
          myControl.Left = nextLeft;
          if (myControl.Height > maxHeight)
          {
              maxHeight = myControl.Height;
          }
          if (myControl.Width > maxWidth)
          {
              maxWidth = myControl.Width;
          }
          if ((nextLeft + myControl.Width + maxWidth) >= ParentWidth)
          {
              nextTop += maxHeight;
              nextLeft = 0;
          }
          else
          {
              nextLeft += myControl.Width;
          }
      } 
    this.AutoScrollPosition = new System.Drawing.Point(0,0);
    base.OnLayout (levent);
}

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

About the Author

Matt Dockins

President
Premier Programming Services
United States United States

Member

Matt Dockins is the President of Premier Programming Services, offering custom programming solutions for the Sage SalesLogix Business Partner and Sage SalesLogix Client as well as general programming services.
 
Premier Programming Services is a fully licensed Sage SalesLogix Development Partner, a VineyardSoft KnowledgeSync partner, and Certified Microsoft ISV.
 
http://www.premierprogrammingservices.com
 

 


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralAdd this snippet to enable smooth scrolling PinmemberMalcolm Hall5:34 26 Jun '08  
QuestionWill this work with Compact Framework? PinmemberMember #207315:03 30 Jan '07  
QuestionCan we Center Align of controls in flowlayout? Pinmembershahulhameed.s@polaris.co.in1:37 27 Jul '05  
I tried using the flowlayout I wanted my controls to be center align to the row when i add a control. This is not possible in .Net but we have the same flowlayout manager which does the center align by default. Is there any way by which i bring that feature in .net to support center align.?
 

QuestionFix for ordering newly added controls? PinmemberCarl Mercier9:40 20 Apr '05  
AnswerRe: Fix for ordering newly added controls? PinsussAnonymous5:50 21 Apr '05  
GeneralA few added properties Pinmembergregoftheweb11:11 19 Jan '05  
GeneralDocking and Anchoring PinsussDuray AKAR6:08 14 Dec '04  
GeneralSome problems and their solutions PinprotectorMarc Clifton3:35 7 Nov '04  
GeneralRe: Some problems and their solutions PinmemberMatt Dockins16:54 7 Nov '04  
GeneralRe: Some problems and their solutions PinmemberCarl Mercier9:35 20 Apr '05  
GeneralRe: Some problems and their solutions PinprotectorMarc Clifton14:49 20 Apr '05  
GeneralRe: Some problems and their solutions PinmemberCarl Mercier14:53 20 Apr '05  
GeneralThanks PinmemberSteven Campbell9:41 29 Oct '04  
GeneralRe: Thanks PinmemberCarl Mercier5:42 20 Apr '05  
GeneralRe: Thanks PinmemberCarl Mercier9:46 20 Apr '05  
GeneralLooks good PinprotectorMarc Clifton9:57 8 Oct '04  
GeneralRe: Looks good Pinmembermdockins10:40 8 Oct '04  
GeneralRe: Looks good Pinmemberchadyoshikawa6:13 7 Aug '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 8 Oct 2004
Article Copyright 2004 by Matt Dockins
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid