"Amar Ingole" <amar.ingole@solversa.com> schrieb:
> I need to draw on Non client area for that i need to handle WM_NCPAINT
> event.
\\\
protected override void WndProc(ref Message msg)
{
base.WndProc(ref msg);
const int WM_NCPAINT = 0x85;
if (msg.Msg == WM_NCPAINT)
;
}
///

Signature
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/
Amar Ingole - 28 Dec 2004 11:52 GMT
thank u very much Herfried..
It really helped me...
> "Amar Ingole" <amar.ingole@solversa.com> schrieb:
> > I need to draw on Non client area for that i need to handle WM_NCPAINT
[quoted text clipped - 14 lines]
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://dotnet.mvps.org/dotnet/faqs/