开发者

How to move the parent window in Child window?

开发者 https://www.devze.com 2023-01-28 03:23 出处:网络
Currently, I use: ::SendMessage(GetParent(),WM_NCLBUTTONDOWN,HTCAPTION,0); to put the parent window in moving and sizing modal, but this has some side effects. so i\'m looking for another way to le

Currently, I use:

::SendMessage(GetParent(),WM_NCLBUTTONDOWN,HTCAPTION,0);

to put the parent window in moving and sizing modal, but this has some side effects. so i'm looking for another way to let the pa开发者_如何学运维rent go into the moving and sizing modal.


See WM_SYSCOMMAND. Pass SC_MOVE as the wParam value and 0 or -1 as the lParam value.

0

精彩评论

暂无评论...
验证码 换一张
取 消