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 中使一种特定颜色透明?
我知道这在 VB.NET 中是可能的,但我想知道它在 Java 中是否可能!
例如:我的 JFrame 有一个红色背景色,我只想让那个红色变得透明,这样红色在哪里,我就可以看到后面的表格/桌面。
希望有人可以提供帮助,因为我被卡住了!
你可以使用
com.sun.awt.AWTUtilities.setWindowShape(Window, Shape)
使用自定义 Shape 实现,该实现仅包含颜色与您的特定颜色不同的点。