2016-04-08 84 views
0

我的GUI具有帶有布爾類型的列的JTable,它被顯示爲JCheckBox。金屬的顏色不適合我的GUI,所以我用下面的代碼:UIManager和JCheckBox圖標

ImageIcon icon = new ImageIcon(MyGUI.class.getResource("resources/checkbox1.png")); 
UIManager.put("CheckBox.icon", icon1); 

我未選中的複選框我想要的,但有一個在UIManager中沒有鑰匙,我可以換到自定義選擇JCheckBox的。 是否有辦法全局更改選定的JCheckBox視圖? P.S.我嘗試了兩種不透明和透明的背景,結果相同 - 複選框不起作用。

+0

[修改外觀](http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/index.html)? – MadProgrammer

回答

0

我發現在互聯網上的解決方案,並改變了它自己。

class CheckBoxIcon implements Icon { 
    public void paintIcon(Component component, Graphics g, int x, int y) { 
     AbstractButton abstractButton = (AbstractButton)component; 
     ButtonModel buttonModel = abstractButton.getModel(); 

     if(buttonModel.isSelected()) 
      g.drawImage(createImage("resources/checkbox2.png"), x, y, component); 
     else 
      g.drawImage(createImage("resources/checkbox1.png"), x, y, component); 
    } 
    public int getIconWidth() { 
     return 13; 
    } 
    public int getIconHeight() { 
     return 13; 
    } 

    protected Image createImage(String path) { 
     URL imageURL = CheckBoxIcon.class.getResource(path); 
     Image icn = null; 

     if (imageURL == null) { 
      if(null==icn){ 
       //System.out.println("path: "+path); 
       icn = new ImageIcon (MyGUI.class.getResource(path)).getImage(); 
       if(null!=icn) 
        return icn; 
       else{ 
        System.err.println("Resource not found: " + path); 
        return null; 
       } 
      } 
      return null; 
     } else { 
      return (new ImageIcon(imageURL)).getImage(); 
     } 
    } 
} 

然後在代碼中使用這一行。

UIManager.put("CheckBox.icon", new CheckBoxIcon());