Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Qt 的 mdi 区域内使用了三种形式。如何确保这些表单不能在 mdi 区域周围拖动/移动?我希望表格处于固定位置。我该如何做到这一点?
谢谢!
找到了解决方案!
使用
subWindow1->setMouseTracking((false));
防止用户移动 mdiarea 内的子窗口。
一个固定的 QWidget 也可以解决这个问题。感谢约翰内斯。