vote up 0 vote down star

Is there any control that can move the Window without the Title bar(Top one)/No frame at all.

I am making a note application as you know so I want it to be compact.

flag

Move how? Would the window move automatically (akin to an msn 'nudge') or in response to user action ('click and drag')? – ricebowl Aug 22 at 19:04

4 Answers

vote up 4 vote down check

You need to return HTCAPTION from the WM_NCHITTEST in your WndProc:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    const int WM_NCHITTEST = 0x0084;
    const int HTCLIENT = 1;
    const int HTCAPTION = 2;
    protected override void WndProc(ref Message msg)
    {
        base.WndProc(ref msg);
        if (msg.Msg == WM_NCHITTEST && msg.Result == (IntPtr)HTCLIENT)
        {
            msg.Result = (IntPtr)HTCAPTION;
        }
    }
}

That will make the client area of your window seem to Windows to be a caption bar.

link|flag
Yes, this works but only if you (can) click on the Form's background. The term 'note application' makes me think of a window-filling textbox. – Henk Holterman Aug 22 at 19:26
Where do I put this code? – Jonathan Shepherd Aug 22 at 19:26
@Henk Holterman I do have "some" background :) You don't really need to move it, it will close itself in 15 second after inactivity. I just want to give user some freedom. – Jonathan Shepherd Aug 22 at 19:28
@Jonathan: You put the code in your form - I've updated the example to show my complete test class. – RichieHindle Aug 22 at 19:30
Got it working what ever. Thanks. – Jonathan Shepherd Aug 22 at 19:31
show 4 more comments
vote up 1 vote down

I wrote a component to do that, you can find it here.

It can be used to move any control, not just a window. You can either use it explicitly in code, or just drop it on the designer surface and set the EnableDragMove property on the window or control, as shown below :

Screenshot

link|flag
This is a more complete answer thanks. – Jonathan Shepherd Aug 23 at 12:54
vote up 0 vote down

If you are going to build a application from scratch I would recommend creating it using WPF.

Todd Miranda has a great demonstration of creating a gadget like application over at windowsclient.net.

Link to the demonstration: http://windowsclient.net/learn/video.aspx?v=5177

link|flag
vote up 0 vote down

Having attempted something like this before I can tell you it isn't particularly easy. What you'll need to do is provided on an OnMouseDown/OnMouseMove/OnMouseUp event to the form itself (or some control in the form) that updates the position of the control when the user clicks and drags. To my knowledge there is no built in control that will allow you to click and drag a window other than the title.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.