Click here to Skip to main content
15,898,020 members
Articles / Programming Languages / C#

Calculate Control Locations at UI

Rate me:
Please Sign up or sign in to vote.
3.00/5 (2 votes)
13 Mar 2009CPOL 14.7K   8   1
Dynamically calculate locations of control array in any UI container

Introduction

This article discusses how to calculate locations and size for UI controls in any container.

Background 

This helps when you want to draw UI controls at run time, without knowing the exact count of required controls.

Using the Code

Specify the Size and List<Point> variables to be set by out parameters and put the required controls count in requiredControlsCount.

this.Size.Width can be replaced with the container width on which you want to draw controls.

Modify the If statements as required. This will affect the number of rows and columns you want for a range. 

For a count of 7 to 9 controls, the following code will generate 3 rows and 3 columns. 

C#
Size controlSize = new Size();
List<Point> controlLocations = new List<Point>();
int requiredControlsCount = 9; //Set this with the required count
	
if (requiredControlsCount == 1)
        GetControlLocations(this.Size.Width, this.Size.Height, 1, 
		1, 5, out controlSize, out controlLocations);
else if (requiredControlsCount > 1 && requiredControlsCount <= 4)
        GetControlLocations(this.Size.Width, this.Size.Height, 2, 
		2, 5, out controlSize, out controlLocations);
else if (requiredControlsCount > 4 && requiredControlsCount <= 6)
        GetControlLocations(this.Size.Width, this.Size.Height, 3, 
		2, 5, out controlSize, out controlLocations);
else if (requiredControlsCount > 6 && requiredControlsCount <= 9)
        GetControlLocations(this.Size.Width, this.Size.Height, 3, 
		3, 5, out controlSize, out controlLocations);
else if (requiredControlsCount > 9 && requiredControlsCount <= 12)
        GetControlLocations(this.Size.Width, this.Size.Height, 4, 
		3, 5, out controlSize, out controlLocations);
else if (requiredControlsCount > 12 && requiredControlsCount <= 16)
        GetControlLocations(this.Size.Width, this.Size.Height, 4, 
		4, 5, out controlSize, out controlLocations);

GetControlLocations will calculate the required size and array of locations of all controls, and will put them in out parameter.

C#
/// <summary>
/// Returns Control Locations based on the parameters passed
/// </summary>
/// <param name="ParentWidth">Parent Container Width</param>
/// <param name="ParentHeight">Parent Container height</param>
/// <param name="TotalRows">Total number of rows required at x axis</param>
/// <param name="TotalColumns">total number of columns required at y axis</param>
/// <param name="Gap">Spacing between controls</param>
/// <param name="ControlSize">Returns size of controls.
/// Pass size variable with out keyword</param>
/// <param name="ControlLocations"> Returns Controls Locations. 
/// Pass a list of points with out keyword.</param>
public static void GetControlLocations(int ParentWidth, 
	int ParentHeight, int TotalRows, int TotalColumns, 
	int Gap, out Size ControlSize, out List<Point> ControlLocations)
{
    int column = 1;
    int row = 1;
    int width = (int)((ParentWidth - (TotalRows + 1) * Gap) / TotalRows);
    int height = (int)((ParentHeight - (TotalColumns + 1) * Gap) / TotalColumns);
    int startX = Gap;
    int startY = Gap;
     ControlSize = new Size(width, height);
    ControlLocations = new List<Point>();
     for (int i = 0; i < TotalRows * TotalColumns; i++)
    {
        if (column > TotalRows)
        {
            column = 1;
            row++;
        }
        ControlLocations.Add(new Point((width * (column - 1)) + 
		(Gap * column), (height * (row - 1)) + (Gap * row)));
         column++;
    }
}

History

  • 13th March, 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Visualsoft-Inc
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Thomasm196026-Feb-10 23:43
Thomasm196026-Feb-10 23: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.