托盘的 Java 外观不起作用
我使用 UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); 设置 LAF 并且工作正常。但这次我还实现了一个托盘,它看起来很丑——就像 Motif 一样。如何为托盘设置 LAF?
I use UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
to set a LAF and it works fine. But this time I also implemented a tray and it looks ugly - like Motif. How can I set LAF for the tray?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能为此使用的类是 java.awt.SystemTray。
托盘使用 AWT,而不是 Swing。您无法设置它的外观和感觉。
我认为这里某处有一个重复的内容。
The class you're probably using for this is java.awt.SystemTray.
The tray uses AWT, not Swing. You cant set the look and feel of it.
I think there is a duplicate of this somewhere on here.