如何让JFrame透明化?我想让我的JFrame透明化。当我的JFrame位于其上时,用户应该看到背景。
答案 0 :(得分:11)
我找到了另一种解决方案。
将画面的背景颜色设置为
// Set the frame background color to a transparent color
yourFrameHere.setBackground(new Color(0, 0, 0, 0));
请记住设置不透明度的内容窗格(您的JPanel或其他组件)
// turn off opacity of the content pane
yourContentPaneHere.setOpaque(false);
答案 1 :(得分:9)