`
strutsliu
  • 浏览: 86433 次
  • 性别: Icon_minigender_1
  • 来自: 漳州
社区版块
存档分类
最新评论

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

    博客分类:
  • java
阅读更多
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/
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics