读书人

使JFrame透明但是里头的组件不透明

发布时间: 2013-07-08 14:13:00 作者: rapoo

使JFrame透明但是里面的组件不透明
jdk7 中可以 通过设置 一个 带有 alpha的背景色来设置窗口 透明/半透明。
frame.setUndecorated(true);
frame.setBackground(new Color(0,0,0,0));

如果你使用的是最丑的 Metal 观感,可以 使用 JFrame.setDefaultLookAndFeelDecorated(true);

--------------------------------------
java setUndecorated(true)出错

this.setUndecorated(true);

出现错误Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: The frame is displayable.

解决办法

this.dispose();

this.setUndecorated(true);

转自http://bbs.csdn.net/topics/370132863
http://huoluotongjie.blog.163.com/blog/static/188993022201161831258253/

读书人网 >编程

热点推荐