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

Move window/form without Titlebar in C#

Rate me:
Please Sign up or sign in to vote.
4.58/5 (92 votes)
26 Jul 2005GPL3 403.6K   7.1K   85   75
How to move a form without having a Titlebar in C#.

Introduction

This is my first article and I hope my English is OK. Have you ever wanted to move a window without a Titlebar in C#? Well, then you're right here.

Let's start

First you have to add the following code in the header of your project. This is needed to load the required DLL's to our project. According to MSDN ReleaseCapture: removes mouse capture from the object in the current document and SendMessage: sends the specified message to a window or windows. It calls the window procedure for the specified window and does not return until the window procedure has processed the message.

C#
using System.Runtime.InteropServices;

If you've done this, you can add the const and the DLL functions:

C#
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;

[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, 
                 int Msg, int wParam, int lParam);
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();

Then put the following two lines of code in the form's MouseDown event like this:

C#
private void Form1_MouseDown(object sender, 
        System.Windows.Forms.MouseEventArgs e)
{     
    if (e.Button == MouseButtons.Left)
    {
        ReleaseCapture();
        SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
    }
}

Believe it or not - you've done it! Now run the App and try to move the form by clicking on the form and moving the mouse (you have to hold the button pressed!)

Hope you find it useful. Enjoy!

Thanks to Patric_J and John Wood for their replies! The code has been updated!

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Germany Germany
Born on August 6th 1982 in Neuss (NRW in Germany). Currently i'm 22 years old guy and my Hobby's are programming, bicycle and swim.

Comments and Discussions

 
GeneralSmart code, thanks! Pin
Member 183173730-Mar-08 7:29
Member 183173730-Mar-08 7:29 
GeneralGr8 Pin
vachan18-Sep-07 23:14
vachan18-Sep-07 23:14 
GeneralNot in mouse down event Pin
AlexanderBraun5-Jan-06 4:20
AlexanderBraun5-Jan-06 4:20 
AnswerRe: Not in mouse down event Pin
FreewareFire8-Jan-06 11:33
FreewareFire8-Jan-06 11:33 
QuestionRe: Not in mouse down event Pin
AJafer6-Sep-07 2:19
AJafer6-Sep-07 2:19 
QuestionRe: Not in mouse down event Pin
jury_mart19-May-08 23:01
jury_mart19-May-08 23:01 
QuestionRe: Not in mouse down event Pin
craigk8-Apr-09 8:12
craigk8-Apr-09 8:12 
GeneralRe: Not in mouse down event Pin
Nitesh Kejriwal9-Jan-14 4:12
professionalNitesh Kejriwal9-Jan-14 4:12 
Thanks Alexander!!! That works like charm! Smile | :) Smile | :) Smile | :) Smile | :)
Nitesh K Luharuka
Consultant
http://www.niteshluharuka.com

Generalmove other window Pin
Kaczy19-Dec-05 12:38
Kaczy19-Dec-05 12:38 
AnswerRe: move other window Pin
FreewareFire8-Jan-06 11:32
FreewareFire8-Jan-06 11:32 
GeneralAnother method & Extending the article Pin
JockerSoft3-Aug-05 21:10
JockerSoft3-Aug-05 21:10 
GeneralRe: Another method & Extending the article Pin
FreewareFire7-Sep-05 2:59
FreewareFire7-Sep-05 2:59 
GeneralRe: Another method & Extending the article Pin
JockerSoft7-Sep-05 20:48
JockerSoft7-Sep-05 20:48 
GeneralRe: Another method & Extending the article Pin
IAbstract18-Dec-09 4:47
IAbstract18-Dec-09 4:47 
GeneralOther option for dragging/resizing Pin
Richard Brunet3-Aug-05 3:51
Richard Brunet3-Aug-05 3:51 
GeneralRe: Other option for dragging/resizing. Oops! Pin
Richard Brunet3-Aug-05 3:54
Richard Brunet3-Aug-05 3:54 
GeneralResizing form with no frame Pin
phervers26-Jul-05 21:47
phervers26-Jul-05 21:47 
GeneralRe: Resizing form with no frame Pin
FreewareFire27-Jul-05 0:38
FreewareFire27-Jul-05 0:38 
GeneralRe: Resizing form with no frame Pin
Axel Rietschin27-Jul-05 2:54
professionalAxel Rietschin27-Jul-05 2:54 
GeneralStarting Pin
sreejith ss nair26-Jul-05 18:00
sreejith ss nair26-Jul-05 18:00 
GeneralRe: Starting Pin
FreewareFire27-Jul-05 0:19
FreewareFire27-Jul-05 0:19 
QuestionA better way? Pin
Axel Rietschin26-Jul-05 16:40
professionalAxel Rietschin26-Jul-05 16:40 
AnswerRe: A better way? Pin
FreewareFire27-Jul-05 0:16
FreewareFire27-Jul-05 0:16 
AnswerRe: A better way? Pin
Tim McCurdy6-Sep-05 17:31
Tim McCurdy6-Sep-05 17:31 
GeneralRe: A better way? Pin
Robertica18-Feb-07 22:51
Robertica18-Feb-07 22:51 

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.