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.
我在将我的位置锁定JFrame在可见屏幕上时遇到问题。我想锁定JFrame屏幕中的位置,以便没有人能够移动它或重新定位它。
JFrame
谢谢你的帮助。
无法保证用户永远无法移动JFrame. 该决定取决于用户的操作系统和窗口管理器。
如果删除框架的标题栏和调整手柄大小已经足够好,这会阻止用户使用鼠标移动框架,然后执行以下操作:
jFrame.setUndecorated(true);
要限制JFrame移动,请移除标题栏,在其上放置您自己的标题栏 + 关闭和最小化机制。这是一个解决JFrame用鼠标限制移动窗口的工作。