VC++ DHTML DIALOG 移动无边框表单
我知道如何在CDialog中移动无边框窗体。我引用我的代码如下。
它使窗口可以通过拖动窗口内的任意点来移动!
void MyWnd::OnLButtonDown(UINT nFlags, CPoint point)
{
PostMessage( WM_NCLBUTTONDOWN, HTCAPTION, MAKELPARAM( point.x, point.y));
}
我需要的是如何移动 CDHTMLDialog 无边框窗体。
请尽快回复。
谢谢!!!
I know how to move the borderless form in CDialog.I quoted my code as follows.
It enabled the window to move by dragging it by any point inside the window!
void MyWnd::OnLButtonDown(UINT nFlags, CPoint point)
{
PostMessage( WM_NCLBUTTONDOWN, HTCAPTION, MAKELPARAM( point.x, point.y));
}
What I need is how to move CDHTMLDialog borderless form.
Please respond as soon as possible.
thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请尝试实现消息处理程序 OnNcHitTest 并返回 HTCAPTION 。这应该有效。
谢谢
Please try implementing the message handler OnNcHitTest and return HTCAPTION . This should work.
Thanks
此代码将获取预翻译消息中的鼠标单击事件
This code will get the mouse click events in pretranslate message