我想在Java中为JToolBar设置渐变背景颜色。 能够为JPanel设置此渐变效果。
谢谢, Sathish所在
答案 0 :(得分:1)
与任何其他Swing组件一样,您必须覆盖其paintComponent(...)
方法。例如,
@Override
protected void paintComponent(Graphics g){
// Create the 2D copy
Graphics2D g2 = (Graphics2D)g.create();
// Apply vertical gradient
g2.setPaint(new GradientPaint(0, 0, Color.WHITE, 0, getHeight(), Color.BLUE));
g2.fillRect(0, 0, getWidth(), getHeight());
// Dipose of copy
g2.dispose();
}
如果您希望通过JToolBar
上的组件显示此渐变,则必须在每个组件上调用setOpaque(false)
。