通常,为了画一条线,我们在WM_PAINT中画它
LRESULT CALLBACK Display::DisplayWindowProc(HWND hWnd,UINT msg,WPARAM wParamm,LPARAM lParam)
{
HDC hdc;
PAINTSTRUCT ps;
switch(msg)
{
case WM_PAINT:
hdc = BeginPaint(hWnd,&ps);
MoveToEx(hdc,0,0,0);
LineTo(hdc,100,100);
EndPaint(hWnd,&ps);
return 0;
case WM_DESTROY:
PostQuitMessage(0);
return 0;
}
return DefWindowProc( hWnd, msg, wParamm, lParam);
}
但是,我想随时划线,简单的例子:
int WINAPI WinMain
(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
PSTR cmdLine,
int showCmd
)
{
//Do Other Things
Display dislpay;
display.DrawLine();
//Do Other Things
}
我的程序是面向对象的,我在display类中显示东西,我想知道我是否可以在display类的DrawLine()函数中画一条线。
您可以创建一个屏幕外DC,并选择一个适当大小的位图,然后随时使用它进行绘制。然后在WM_PAINT
上,您可以从屏幕外的DC闪电进入windows DC。