show/hide this revision's text 2 Made it a complete class; added 51 characters in body

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;
        return;
    }
    base.WndProc(ref msg);
}
}

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

show/hide this revision's text 1

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

const int WM_NCHITTEST = 0x0084;
const int HTCAPTION = 2;
protected override void WndProc(ref Message msg)
{
    if (msg.Msg == WM_NCHITTEST)
    {
        msg.Result = (IntPtr)HTCAPTION;
        return;
    }

    base.WndProc(ref msg);
}

That will make your whole window seem to Windows to be a caption bar.