Glazed List 和 Nimbus 中的背景颜色

发布于 2024-12-12 07:46:05 字数 796 浏览 0 评论 0原文

我对 Glazed Lists 中的组合框使用自动完成功能。这非常有用。我也使用 nibus L&F。但它忽略了 JCombobox.setBackground(Color)。有什么方法可以使用 nimbus 强制背景颜色为红色吗?

示例代码:

SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
    final JFrame frame = new JFrame();
    JComboBox cbox = new JComboBox();
    String[] strs = {"Nowarro", "Klamat", "Den", "NKR"};
    try {
        UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
    } catch (Throwable e1) {
        e1.printStackTrace();
    }
    AutoCompleteSupport.install(cbox, GlazedLists.eventList(Arrays.asList(strs)));
    cbox.setBackground(Color.RED); // NO EFFECT!!!
    frame.getContentPane().add(cbox);
    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);

}

I use a autocomplete feature for comboboxes from Glazed Lists. It's pretty usefull. I also use nibus L&F. But it ignores JCombobox.setBackground(Color). Is there any way to force backgroundcolor to be for example red using nimbus?

Examplecode:

SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
    final JFrame frame = new JFrame();
    JComboBox cbox = new JComboBox();
    String[] strs = {"Nowarro", "Klamat", "Den", "NKR"};
    try {
        UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
    } catch (Throwable e1) {
        e1.printStackTrace();
    }
    AutoCompleteSupport.install(cbox, GlazedLists.eventList(Arrays.asList(strs)));
    cbox.setBackground(Color.RED); // NO EFFECT!!!
    frame.getContentPane().add(cbox);
    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮世清欢 2024-12-19 07:46:05
Color color = UIManager.getColor
      ("ComboBox:\"ComboBox.renderer\"[Selected].background");

对于Nimbus,你必须覆盖nimbus UI默认更多此处

Color color = UIManager.getColor
      ("ComboBox:\"ComboBox.renderer\"[Selected].background");

for Nimbus you have to override nimbus UI default more here

倒数 2024-12-19 07:46:05

组合框由多个组件组成。您需要在组合框中设置实际编辑器组件的背景颜色:

cbox.getEditor().getEditorComponent().setBackground(Color.red);

ComboBoxes are made up of multiple components. You need to set the background color on the actual editor component in the combo box:

cbox.getEditor().getEditorComponent().setBackground(Color.red);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文