Click here to Skip to main content
15,879,326 members
Articles / Desktop Programming / Windows Forms
Article

Move Controls on a Form at Runtime

Rate me:
Please Sign up or sign in to vote.
4.92/5 (92 votes)
17 Dec 2008CPOL1 min read 805.5K   17.3K   124   83
Move controls on a form at runtime by just using a helper class and one line of code

Introduction

In some cases, it is handy to move controls on a form around by using your mouse. In this project, there is a helper class which does all the stuff needed to do this. Not only can a control be moved, but also its container.

Only one line of code is used to make a control movable (not ugly drag and drop):

C#
Helper.ControlMover.Init(this.button1);

Really? Yes!!

Background

This code uses anonymous delegates to do the hard work. One advantage of this is that the helper class ControlMover has only static methods.

C#
using System;
using System.Drawing;
using System.Windows.Forms;

namespace Helper
{
  class ControlMover
  {
    public enum Direction
    {
      Any,
      Horizontal,
      Vertical
    }

    public static void Init(Control control)
    {
      Init(control, Direction.Any);
    }

    public static void Init(Control control, Direction direction)
    {
      Init(control, control, direction);
    }

    public static void Init(Control control, Control container, Direction direction)
    {
      bool Dragging = false;
      Point DragStart = Point.Empty;
      control.MouseDown += delegate(object sender, MouseEventArgs e)
      {
        Dragging = true;
        DragStart = new Point(e.X, e.Y);
        control.Capture = true;
      };
      control.MouseUp += delegate(object sender, MouseEventArgs e)
      {
        Dragging = false;
        control.Capture = false;
      };
      control.MouseMove += delegate(object sender, MouseEventArgs e)
      {
        if (Dragging)
        {
          if (direction != Direction.Vertical)
            container.Left = Math.Max(0, e.X + container.Left - DragStart.X);
          if (direction != Direction.Horizontal)
            container.Top = Math.Max(0, e.Y + container.Top - DragStart.Y);
        }
      };
    }
  }
}

Using the Code

An example of how to use this code is presented in the project source file. All controls can be moved by a mouse. Also, a simple splitter using a toolbar is presented. Another panel containing a toolbar can be moved by using its toolbar.

C#
using System;
using System.Drawing;
using System.Windows.Forms;

namespace MoveYourControls
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();

      // Make your controls movable by a mouseclick
      Helper.ControlMover.Init(this.button1);
      Helper.ControlMover.Init(this.checkBox1);
      Helper.ControlMover.Init(this.groupBox1);
      Helper.ControlMover.Init(this.textBox1);
      Helper.ControlMover.Init(this.label1);

      // Move a panel by its toolstrip
      Helper.ControlMover.Init(this.toolStrip2, this.panel3, 
                               Helper.ControlMover.Direction.Any);

      // Make a splitter from toolstrip
      Helper.ControlMover.Init(this.toolStrip1, Helper.ControlMover.Direction.Vertical);
      this.toolStrip1.LocationChanged += delegate(object sender, EventArgs e)
      {
        this.panel1.Height = this.toolStrip1.Top;
      };
    }
  }
}

The Form after moving all the controls around.

Points of Interest

Sometimes, a control may only be moved in one direction. This is true for splitters and stuff. The helper class has a direction enumerator which makes things really easy:

C#
Helper.ControlMover.Init(this.button1);
Helper.ControlMover.Init(this.button2, Helper.ControlMover.Direction.Any);
Helper.ControlMover.Init(this.button3, Helper.ControlMover.Direction.Horizontal);
Helper.ControlMover.Init(this.button4, Helper.ControlMover.Direction.Vertical);

Have fun!!

History

  • As of publication, version 1.0.0.0 is presented.

License

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


Written By
Retired Van der Heijden Holding BV
Netherlands Netherlands
I'm Alphons van der Heijden, living in Lelystad, Netherlands, Europa, Earth. And currently I'm retiring from hard working ( ;- ), owning my own company. Because I'm full of energy, and a little to young to relax ...., I don't sit down, but create and recreate software solutions, that I like. Reinventing the wheel is my second nature. My interest is in the area of Internet technologies, .NET etc. I was there in 1992 when Mosaic came out, and from that point, my life changed dramatically, and so did the world, in fact. (Y)

Comments and Discussions

 
QuestionWhat about ListView? Pin
SergeyAndreyev7-May-13 7:45
SergeyAndreyev7-May-13 7:45 
GeneralMy vote of 5 Pin
lucianomalta1-May-13 11:03
lucianomalta1-May-13 11:03 
GeneralMy vote of 5 Pin
karenpayne27-Mar-13 15:53
karenpayne27-Mar-13 15:53 
GeneralMy vote of 4 Pin
ymmt25-Mar-13 20:46
ymmt25-Mar-13 20:46 
Questionmoving showing line like in Forms designer Pin
rmircea7-Feb-13 23:38
rmircea7-Feb-13 23:38 
AnswerRe: moving showing line like in Forms designer Pin
Alphons van der Heijden8-Feb-13 1:11
professionalAlphons van der Heijden8-Feb-13 1:11 
Questionit's cool .i like.thanks a lot Pin
kankankan22222-Dec-12 1:56
kankankan22222-Dec-12 1:56 
QuestionGood one Pin
demouser74312-Dec-12 23:51
demouser74312-Dec-12 23:51 
Hi this is too cool, but I had a question when moving control to the right or bottom of the screen, it is getting moved completely to the corners of screen, while to left or top it is working perfectly how to fix this
AnswerRe: Good one Pin
Alphons van der Heijden14-Dec-12 0:01
professionalAlphons van der Heijden14-Dec-12 0:01 
GeneralRe: Good one Pin
uzairali00116-Dec-13 4:47
professionaluzairali00116-Dec-13 4:47 
QuestionGreat! A Question! Pin
Onur Guzel23-Oct-12 22:44
Onur Guzel23-Oct-12 22:44 
AnswerRe: Great! A Question! Pin
Alphons van der Heijden23-Oct-12 23:18
professionalAlphons van der Heijden23-Oct-12 23:18 
QuestionIs the best ! Pin
darneet11-Oct-12 9:06
darneet11-Oct-12 9:06 
QuestionMessage Closed Pin
27-Jun-12 2:53
Malik_Usman27-Jun-12 2:53 
AnswerRe: Need same example in VB.Net Pin
Alphons van der Heijden27-Jun-12 23:43
professionalAlphons van der Heijden27-Jun-12 23:43 
AnswerRe: Need same example in VB.Net Pin
freakyit30-Jun-12 8:53
freakyit30-Jun-12 8:53 
AnswerRe: Need same example in VB.Net Pin
karenpayne27-Mar-13 15:52
karenpayne27-Mar-13 15:52 
QuestionGreat! Pin
Member 84305986-Mar-12 21:26
Member 84305986-Mar-12 21:26 
QuestionGood! Pin
Alex Park7-Feb-12 11:01
Alex Park7-Feb-12 11:01 
GeneralMy vote of 5 Pin
Armando de la Torre17-Oct-11 13:26
Armando de la Torre17-Oct-11 13:26 
GeneralMy vote of 5 Pin
aswind010116-Jul-11 17:15
aswind010116-Jul-11 17:15 
Questionplz help to stop a movable control..... Pin
kaushik24025-Jul-11 20:10
kaushik24025-Jul-11 20:10 
AnswerRe: plz help to stop a movable control..... Pin
Alphons van der Heijden19-Jul-11 3:50
professionalAlphons van der Heijden19-Jul-11 3:50 
GeneralThanx Pin
Alesmol15-Apr-11 21:02
Alesmol15-Apr-11 21:02 
Generalthnk Pin
sandeepparekh9-Mar-11 20:55
sandeepparekh9-Mar-11 20:55 

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.