我通过以下方式使我的JFrame透明:
myFrame.setUndecorated(true);
myFrame.setBackground(new Color(1.0f,1.0f,1.0f,0.0f));
它使JFrame透明,但也丢失了窗口条和关闭按钮。 为了使窗口显示,我使用了
AWTUtilities.setOpacity(this, 0.5f);
但是我发现这个方法仅适用于java 6并且打包在AWT包中,该包在java 7中受到限制。该方法也在java 7中更改,现在是
Window.setOpacity(float opacity);
但它不起作用,任何人都可以告诉我如何使透明窗口和按钮与透明框架一起可见。
答案 0 :(得分:2)
这会使框架看起来有点不同,但我认为这就是你想要的:
import java.awt.Color;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class TransparentExample extends JFrame {
public TransparentExample() {
super("TransparentExample");
JPanel panel = new JPanel();
panel.add(new JButton("Button"));
setContentPane(panel);
setBackground(new Color(0, 0, 0, 0));
setSize(500, 500);
setLocationRelativeTo(null);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
JFrame.setDefaultLookAndFeelDecorated(true);
TransparentExample frame = new TransparentExample();
frame.setVisible(true);
}
}
如果有效,它应该是这样的: