當我的Java UI程序中的任何單選按鈕被選中時,選擇將以黑色點顯示。我想讓它變成綠色。我正在使用Java Swing。我遵循了這個SO Question的回答,但它不適合我。選中時仍顯示黑點。JRadioButton選擇顏色
public class OptionFrame extends JFrame {
public OptionFrame(){
UIManager.put("RadioButton.focus", new ColorUIResource(Color.GREEN));
SwingUtilities.updateComponentTreeUI(this);
}
}
我無法理解爲什麼上面的代碼不起作用。任何建議,高度讚賞。
謝謝。
更改前景色,而不是焦點色。 – Mordechai
[無法設置JPanel顏色和JRadioButton隱形]的可能重複(http://stackoverflow.com/questions/14085840/cant-set-jpanel-color-and-jradiobutton-invisibility)。 – trashgod
不,仍然不起作用。 –