I would like to draw some simple rectangles and text over the window frame so it looks like Visual Studio. Can it be done or should i make a borderless window and handle moving andresizing myself?
EDIT: I wrote this. But how do I draw now?
protected override void WndProc(ref Message m)
{
if (m.Msg == WndProcMsg.WM_PAINT) //0x000f
{
}
base.WndProc(ref m);
}