在窗体内移动 MDI 窗体

发布于 2024-09-25 09:18:17 字数 106 浏览 4 评论 0原文

你好 我有一个表单,其中放置了另一个表单作为 MDI,在移动 MDI 表单(顶部、底部、左、右)时,它会进入主表单的边界,因此 Mdi 会被隐藏。 我想限制 MDI 窗体在触及窗体边界时移动。

hi
I have a form in which i placed another form as MDI ,on moving the MDI form (Top,Bottom,Left,Right)it goes inside the boundaries of main form so the Mdi gets hidden.
i want to restrict the MDI form to move when it touches the form boundaries.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

层林尽染 2024-10-02 09:18:17

您需要捕获子窗体的 OnMove 事件,并且在该处理程序中,您需要确保子窗体的窗口矩形位于父窗体的边界内。如果不是,您需要调整子窗体的位置。

您可以在此处找到如何执行此操作的示例。

You need to capture the OnMove event for your child forms, and in that handler you need to make sure your child form's window rect is within the parent's boundary. If not you need to adjust the location of the child form.

An example of how to do this can be found here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文