具有黑色不透明度的 JWindow
我想创建一个 JWindow,它不仅具有不透明度,而且还想更改 Swing 内不透明度的默认颜色。
例如,如果我写:
AWTUtilities.setWindowOpacity(this, 0.5f);
这将完全按照我想要的方式进行,但有一个例外,颜色是白色。怎样才能让颜色变成黑色呢?
我已经在“this”上尝试了 setBackground(Color.Black)
等所有内容...
I would like to create a JWindow that's not only has an opacity, but I want to change the default color of the opacity within Swing.
So for example, if I write:
AWTUtilities.setWindowOpacity(this, 0.5f);
This will make do exactly what I want with one exception, the color is white. How can I make the color become black?
I've tried everything from setBackground(Color.Black)
, etc. on "this"...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
透明 JWindow。
Transparent JWindow.