VC++ DHTML DIALOG 移动无边框表单

发布于 2024-12-04 10:18:03 字数 311 浏览 0 评论 0原文

我知道如何在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

征﹌骨岁月お 2024-12-11 10:18:03

请尝试实现消息处理程序 OnNcHitTest 并返回 HTCAPTION 。这应该有效。

谢谢

Please try implementing the message handler OnNcHitTest and return HTCAPTION . This should work.

Thanks

风追烟花雨 2024-12-11 10:18:03

此代码将获取预翻译消息中的鼠标单击事件

 BOOL CSampleDlg::preTranslateMessage(MSG* pMsg)
 {
     if(pMsg->message == WM_LBUTTONDOWN)
     {
          PostMessage( WM_NCLBUTTONDOWN, HTCAPTION, MAKELPARAM( pMsg->pt.x, pMsg->pt.y));
          return false;
     }
       return CDHtmlDialog::preTranslateMessage(pMsg);
}

This code will get the mouse click events in pretranslate message

 BOOL CSampleDlg::preTranslateMessage(MSG* pMsg)
 {
     if(pMsg->message == WM_LBUTTONDOWN)
     {
          PostMessage( WM_NCLBUTTONDOWN, HTCAPTION, MAKELPARAM( pMsg->pt.x, pMsg->pt.y));
          return false;
     }
       return CDHtmlDialog::preTranslateMessage(pMsg);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文