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.
