gpt4 book ai didi

java - 在java中为渐变面板添加颜色?

转载 作者:行者123 更新时间:2023-12-04 06:57:58 24 4
gpt4 key购买 nike

如何在java中为我们的渐变面板添加新颜色?

最佳答案

从 JPanel 扩展您的面板并像这样覆盖它的paintComponent。

    @Override
protected void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D) g;
// Creates a two-stops gradient
GradientPaint p;
p = new GradientPaint(0, 0, new Color(0xFFFFFF),
0, getHeight(), new Color(0xC8D2DE));
// Saves the state
Paint oldPaint = g2.getPaint();
// Paints the background
g2.setPaint(p);
g2.fillRect(0, 0, getWidth(), getHeight());
// Restores the state
g2.setPaint(oldPaint);
// Paints borders, text...
super.paintComponent(g);
}
}

并且您看到可以更改现有颜色的颜色对象...

我建议你阅读

Filthy Rich Clients



并从某处获得这本书。它有更多有用的信息,您可以学习使用。

关于java - 在java中为渐变面板添加颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2309489/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com