Java Swing的GUI界面中显示glassPane层
以JFrame窗口为例,显示glassPane
- 代码如下:
代码如下:
public class Test {
public static void main(String[] args) {
JFrame frame = new JFrame("GlassPane Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 300);
frame.setLocationRelativeTo(null);
// Get the glassPane of the frame
JPanel glassPane = (JPanel) frame.getGlassPane();
glassPane.setOpaque(true);
glassPane.setVisible(true);
glassPane.setBackground(Color.RED);
frame.setVisible(true);
}
}
效果如下图所示:
比较重要的是需要进行一次强制类型转换(JPanel) frame.getGlassPane()。