在窗体内移动 MDI 窗体
你好 我有一个表单,其中放置了另一个表单作为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要捕获子窗体的 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.