Java Swing JComboBox 删除 LAF
如何从 Swing JComboBox
中删除 LAF 样式?
How can I remove the LAF style from a Swing JComboBox
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 Swing JComboBox
中删除 LAF 样式?
How can I remove the LAF style from a Swing JComboBox
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您实际上无法删除 LAF,因为这样就不会渲染任何内容,但您可以仅为该组合框设置另一个 LAF。
像这样的事情:
You can't actually remove the LAF since then nothing would be rendered but you can set another LAF for that combobox only.
Something like this:
只需检查自定义 JComboBox 外观 。也许您会找到所需的答案。
Just check Customizing a JComboBox Look and Feel. Maybe you will find the required answer.