禁用全窗口拖动

发布于 2024-10-21 06:56:03 字数 236 浏览 3 评论 0原文

当我使用 AWTUtilities.setWindowOpaque(this, false); 使 JFrame 的背景透明时,您可以通过将 JFrame 拖动到窗口中的任意位置来更改其位置。我的问题是,我有一些想要用于在此框架上拖放的对象,但是当我尝试拖动对象时 JFrame 移动时,不可能将其放在其他任何地方。 有什么办法可以解决这个问题吗?

顺便说一句,我在 Mac 上使用 Mac OS 10.6.6

感谢您的帮助!

when I use AWTUtilities.setWindowOpaque(this, false); to make my JFrames' background transparent, you can change the location of my JFrame by dragging it anywhere in the window. My problem is, that I have Objects I want to use for drag and drop on this Frame, but when the JFrame moves when I try to drag an object its impossible to drop it anywhere else.
Is there any way to solve this problem?

By the way, I am on Mac using Mac OS 10.6.6

Thanks for your help!

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

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

发布评论

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

评论(2

夏夜暖风 2024-10-28 06:56:03

抱歉我的英语不好。
试试这个:

setUndecorated(true); 
AWTUtilities.setWindowOpaque(this, false); 
getRootPane().putClientProperty("apple.awt.draggableWindowBackground", Boolean.FALSE); 

默认情况下,setWindowOpaque 函数将此客户端属性设置为 true。但是这个客户端属性使窗口中的每个组件都可以拖动。

现在你必须自己编写拖动代码。

Sorry for the my bad english.
Try this:

setUndecorated(true); 
AWTUtilities.setWindowOpaque(this, false); 
getRootPane().putClientProperty("apple.awt.draggableWindowBackground", Boolean.FALSE); 

By default the setWindowOpaque function set this client property as true. But this client property makes every component within your window draggable.

Now you have to make the drag code by yourself.

不喜欢何必死缠烂打 2024-10-28 06:56:03

你应该在 Windows 上测试一下,因为我认为这是 mac 的功能。通常,您可以单击框架中的任意位置来拖动应用程序。您的目标部署平台是什么?
也许您可以在其中放置另一个面板并将其设置为非透明。也许这会有帮助?

You should test that on windows as I think that's a mac feature. You can, in general click anywhere in the frame to drag an app about. What's your target deployment platform?
Maybe you can put another panel in it and set that to non-opague. maybe this will help?

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