Click here to Skip to main content
15,881,559 members
Articles / Programming Languages / C# 3.5
Tip/Trick

C# Resize ALL Controls at Runtime

Rate me:
Please Sign up or sign in to vote.
4.95/5 (23 votes)
26 Mar 2014CPOL2 min read 147.3K   8.4K   35   60
Simple and easy to use code in resizing all controls

Introduction

This is my second post which tackles auto form resizing. My previous tip can be found here. I am fascinated with how the controls resize themselves to their containers at runtime. Though it is easy to imagine, sometimes the question which some programmer would ask is "Where do I start?".

Background

In the program, I use the IEnumerable Interface and place it inside a class so it can be accessible to every form. You just reference the exact class name. Feel free to comment.

Using the Code

This is the default namespace of C#. Since this is C#, you should add this to import statement using System.Collections; in a class so you can use the array collection. Just create a new form. Copy this code below. The class is included in the attached file.

C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms; 

The collections are a good way to keep track of objects that your application might need to dynamically create and destroy at runtime. You can store or add an item of any data type. A friendly reminder, don't forget to include the System.Collections.Generic namespace in case you miss it to safeguard against inappropriate data types being added in the collection. You can create your own variable name if you want as long as it is understandable. Inside your MainForm, i.e. Form1:

C#
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        clsResize _form_resize;

        public Form1()
        {
            InitializeComponent();

           _form_resize = new clsResize(this); //I put this after the initialize event to be sure that all controls are initialized properly

           this.Load += new EventHandler(_Load); //This will be called after the initialization // form_load
           this.Resize += new EventHandler(_Resize); //form_resize
        } 

Below is the form load event. At this point, initial values are stored in the collection for later calculations. This will store all values into ArrayList inside the class.

C#
private void _Load(object sender, EventArgs e)
       {
           _form_resize._get_initial_size();
       }

Below is the resize event, This will call the _resize event inside the class for later calculations.

C#
        private void _Resize(object sender, EventArgs e)
        {
            _form_resize._resize();
        }
    }
}  

Inside the class:

C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms; 

This is private declaration inside the class, no other static definition has been included for safety purposes.

C#
List<System.Drawing.Rectangle> _arr_control_storage = new List<System.Drawing.Rectangle>();
    private bool showRowHeader = false;
    public clsResize(Form _form_)
    {
        form = _form_; //the calling form
        _formSize = _form_.ClientSize; //Save initial form size
        _fontsize = _form_.Font.Size; //Font size
    }

    private float _fontsize  { get; set; }

    private System.Drawing.SizeF _formSize {get;set; }

    private Form form { get; set; } 

This event gets / records the initial size and location of the controls inside the form:

C#
public void _get_initial_size() //get initial size//
    {
        var _controls = _get_all_controls(form);//call the enumerator
        foreach (Control control in _controls) //Loop through the controls
        {
            _arr_control_storage.Add(control.Bounds); //saves control bounds/dimension            
            //If you have datagridview
            if (control.GetType() == typeof(DataGridView))
                _dgv_Column_Adjust(((DataGridView)control), showRowHeader);
        }
    } 

This event sets the control size based on the ratio of adjustment. As you can see, I removed the condition with this kind of statement: (if current_form size < initial_form size), then return to initial size. Using the code below, the control resizes itself to its container if the current form size is less than the initial form size.

C#
public void _resize() //Set the resize
    {
        double _form_ratio_width = (double)form.ClientSize.Width /(double)_formSize.Width; //ratio could be greater or less than 1
        double _form_ratio_height = (double)form.ClientSize.Height / (double)_formSize.Height; // this one too
        var _controls = _get_all_controls(form); //reenumerate the control collection
        int _pos = -1;//do not change this value unless you know what you are doing
        foreach (Control control in _controls)
        {
            // do some math calc
            _pos += 1;//increment by 1;
            System.Drawing.Size _controlSize = new System.Drawing.Size
            ((int)(_arr_control_storage[_pos].Width * _form_ratio_width),
                (int)(_arr_control_storage[_pos].Height * _form_ratio_height)); //use for sizing

            System.Drawing.Point _controlposition = new System.Drawing.Point((int)
            (_arr_control_storage[_pos].X * _form_ratio_width),
            (int) (_arr_control_storage[_pos].Y * _form_ratio_height));//use for location

            //set bounds
            control.Bounds = new System.Drawing.Rectangle(_controlposition, _controlSize); //Put together

            //Assuming you have a datagridview inside a form()
            //if you want to show the row header, replace the false statement of 
            //showRowHeader on top/public declaration to true;
            if (control.GetType() == typeof(DataGridView))
                _dgv_Column_Adjust(((DataGridView)control), showRowHeader);


            //Font AutoSize
            control.Font = new System.Drawing.Font(form.Font.FontFamily,
             (float)(((Convert.ToDouble(_fontsize) * _form_ratio_width) / 2) +
              ((Convert.ToDouble(_fontsize) * _form_ratio_height) / 2)));

        }
    }

I included this one if you have a datagridview and you want to resize the column base on its container.

C#
private void _dgv_Column_Adjust(DataGridView dgv, bool _showRowHeader) //if you have Datagridview
//and want to resize the column base on its dimension.
{
    int intRowHeader = 0;
    const int Hscrollbarwidth = 5;
    if (_showRowHeader)
        intRowHeader = dgv.RowHeadersWidth;
    else
        dgv.RowHeadersVisible = false;

    for (int i = 0; i < dgv.ColumnCount; i++)
    {
        if (dgv.Dock == DockStyle.Fill) //in case the datagridview is docked
            dgv.Columns[i].Width = ((dgv.Width - intRowHeader) / dgv.ColumnCount);
        else
            dgv.Columns[i].Width = ((dgv.Width - intRowHeader - Hscrollbarwidth) / dgv.ColumnCount);
    }
}

In the attached project, I have added a sample program with complete code for reference purposes.

Points of Interest

The code is easy to understand. Enjoy!

History

  • March 27, 2014 - First post
  • April 06, 2014 - Revised code (Resized the control even if the current form size is less than the initial)

License

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


Written By
Software Developer
Philippines Philippines
A tech hobbyist and loves computer programming / web development (particularly ASP.net).

-Emer R-

Comments and Discussions

 
QuestionUnable to resize MDI Child controls when MDI parent is resized Pin
Member 1011884623-Jun-22 3:21
Member 1011884623-Jun-22 3:21 
Questionmany thanks Pin
Ibrahim_Saleh30-Mar-22 1:22
Ibrahim_Saleh30-Mar-22 1:22 
QuestionWell done !!! Pin
Member 1066426819-Jan-21 11:23
Member 1066426819-Jan-21 11:23 
GeneralResize even after change in controls position Pin
Member 1478365331-Mar-20 0:01
Member 1478365331-Mar-20 0:01 
QuestionFlickering objects Pin
matrixcd11-Sep-19 6:23
matrixcd11-Sep-19 6:23 
QuestionIt works Pin
coarist13-Jan-19 2:18
coarist13-Jan-19 2:18 
PraiseThanks Pin
vinay_win3-Jan-19 1:54
vinay_win3-Jan-19 1:54 
QuestionIndex was out range. Must be non-negative and less than the size of the collection. Parameter name: Index Pin
Member 136910903-Apr-18 4:21
Member 136910903-Apr-18 4:21 
AnswerRe: Index was out range. Must be non-negative and less than the size of the collection. Parameter name: Index Pin
Risa Namxari25-May-20 18:10
Risa Namxari25-May-20 18:10 
QuestionMinimize Problem Pin
t_nedelchev24-Jan-18 4:06
t_nedelchev24-Jan-18 4:06 
QuestionRows in a datagridview Pin
coolsas8-Feb-17 11:12
coolsas8-Feb-17 11:12 
QuestionLabel fonts do not resize Pin
Member 115735656-Oct-16 12:12
Member 115735656-Oct-16 12:12 
PraiseYessssssssssss! Finally I found what i was looking for! thank you thanks thanks thanksssssssss :D Pin
mn_acer124-Jul-16 21:01
mn_acer124-Jul-16 21:01 
GeneralRe: Yessssssssssss! Finally I found what i was looking for! thank you thanks thanks thanksssssssss :D Pin
emerR4626-Oct-16 16:53
emerR4626-Oct-16 16:53 
QuestionSuggestion Pin
Member 1207484923-Nov-15 7:14
Member 1207484923-Nov-15 7:14 
QuestionERROR Pin
MAYANK GEETE17-Nov-15 23:55
professionalMAYANK GEETE17-Nov-15 23:55 
QuestionExcellent job! Very helpful! Pin
www.kkk8-Jun-15 11:48
www.kkk8-Jun-15 11:48 
AnswerRe: Excellent job! Very helpful! Pin
emerR4616-Jun-15 11:19
emerR4616-Jun-15 11:19 
QuestionThe Label Control doesn't seem to resize Pin
Harry Whitehouse21-Apr-15 20:13
Harry Whitehouse21-Apr-15 20:13 
AnswerRe: The Label Control doesn't seem to resize Pin
emerR4616-Jun-15 11:21
emerR4616-Jun-15 11:21 
GeneralRe: The Label Control doesn't seem to resize Pin
Member 1173601531-Aug-15 14:46
Member 1173601531-Aug-15 14:46 
GeneralRe: The Label Control doesn't seem to resize Pin
Member 1173601531-Aug-15 14:50
Member 1173601531-Aug-15 14:50 
QuestionDon't see results in columns Pin
PAntonina21-Jul-14 23:35
professionalPAntonina21-Jul-14 23:35 
AnswerRe: Don't see results in columns Pin
emerR4622-Jul-14 15:04
emerR4622-Jul-14 15:04 
QuestionShowing form in panel Pin
Member 91175778-Apr-14 17:57
Member 91175778-Apr-14 17:57 

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.