JToolBar的渐变背景



我想在Java中为JToolBar设置渐变背景色。我可以为JPanel设置这个渐变效果。

谢谢,Sathish

与任何其他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)

相关内容

  • 没有找到相关文章

最新更新