How to resize window using WinAPI

Posted by Evl-ntnt on Stack Overflow See other posts from Stack Overflow or by Evl-ntnt
Published on 2010-05-31T12:25:41Z Indexed on 2010/05/31 12:32 UTC
Read the original article Hit count: 242

Filed under:
|
|
|

I'm want resize window using WinAPI. I use WinAPI function

SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, uint uFlags);

Window is resized, but window content is not redrawed. If I resize this window using mouse, content redraws. How to resize window using WinAPI with content redrawing?

© Stack Overflow or respective owner

Related posts about c#

Related posts about Windows