我在设计JScrollPane时遇到了麻烦。我只是希望能够改变拇指和背景的颜色(还可以删除增加/减少按钮)。到目前为止,我尝试了以下内容:
this.setBackground(new Color(0,0,0));
this.viewport.setBackground(new Color(0,0,0));
this.getViewport().setBackground(Color.BLACK);
this.setOpaque(false);
this.getVerticalScrollBar().setUI(new BasicScrollBarUI()
{
@Override
protected JButton createDecreaseButton(int orientation) {
return createZeroButton();
}
@Override
protected JButton createIncreaseButton(int orientation) {
return createZeroButton();
}
@Override
protected void configureScrollBarColors(){
}
});
this.getHorizontalScrollBar().setUI(new BasicScrollBarUI()
{
@Override
protected JButton createDecreaseButton(int orientation) {
return createZeroButton();
}
@Override
protected JButton createIncreaseButton(int orientation) {
return createZeroButton();
}
});
}
private JButton createZeroButton() {
JButton jbutton = new JButton();
jbutton.setPreferredSize(new Dimension(0, 0));
jbutton.setMinimumSize(new Dimension(0, 0));
jbutton.setMaximumSize(new Dimension(0, 0));
return jbutton;
}
另外
UIManager.put("ScrollBar.trackHighlightForeground", (new Color(57,57,57)));
UIManager.put("scrollbar", (new Color(57,57,57)));
UIManager.put("ScrollBar.thumb", new ColorUIResource(new Color(57,57,57)));
UIManager.put("ScrollBar.thumbHeight", 2);
UIManager.put("ScrollBar.background", (new Color(57,57,57)));
UIManager.put("ScrollBar.thumbDarkShadow", new ColorUIResource(new Color(57,57,57)));
UIManager.put("ScrollBar.thumbShadow", new ColorUIResource(new Color(57,57,57)));
UIManager.put("ScrollBar.thumbHighlight", new ColorUIResource(new Color(57,57,57)));
UIManager.put("ScrollBar.trackForeground", new ColorUIResource(new Color(57,57,57)));
UIManager.put("ScrollBar.trackHighlight", new ColorUIResource(new Color(57,57,57)));
UIManager.put("ScrollBar.foreground", new ColorUIResource(new Color(57,57,57)));
UIManager.put("ScrollBar.shadow", new ColorUIResource(new Color(57,57,57)));
UIManager.put("ScrollBar.highlight", new ColorUIResource(new Color(57,57,57)));
通过以上所有代码,我得到一个带有白色背景的黑色拇指。有趣的是,如果我删除了setUI函数,我得到一个带有黑暗背景的默认拇指..
有什么想法吗?
由于
的解决 的 ** * ** *
上面的configureScrollBarColors函数可以通过以下方式使用:
@Override
protected void configureScrollBarColors(){
this.thumbColor = Color.GREEN;
}
将拇指的颜色更改为绿色。
答案 0 :(得分:1)
以防万一有人在这个帖子上寻找帮助:
以下行可用于更改滚动条的外观。可以更改由“_”字符包围的字段(键和颜色)。
UIManager.put("ScrollBar._key_", new ColorUIResource(_COLOR_));
更改条形颜色的最相关键是:
thumb
(拇指的一般颜色)thumbDarkShadow
(拇指的剩余部分)thumbShadow
(基本上是拇指的边框,用高光分割成两半)thumbHighlight
(边框的后半部分种类)track
(背景)所以一个例子是:
UIManager.put("ScrollBar.thumb", new ColorUIResource(Color.black));
这会使拇指的主要部分变黑。
如果您要使用完整的单色拇指,请使用除轨道以外的所有键并将它们设置为相同的颜色。
如果你想要一个大纲,前两个设置为color1,后两个设置为color2。
我试图改善自己的GUI时遇到了这个问题,经过一些细微的调整后我想分享我的发现。