TabbedPaneUI 绘制选定的选项卡

发布于 2024-11-11 03:45:22 字数 599 浏览 2 评论 0原文

我想以与其他选项卡不同的方式绘制所选选项卡,第一次可以工作,但随后重新绘制就不起作用。

这是我在 PaintTabBackground 中所做的代码:

Graphics2D g2d = (Graphics2D) g.create();
    if (isSelected) {
        BufferedImage background = tabSelected;
        Insets insets = getTabInsets(tabPlacement, tabIndex);
        Rectangle tabBound = getTabBounds(tabPane, tabIndex);
        tileStretchPaint(g2d, tabBound, background, insets);
    } else {
        g2d.setColor(new Color(0, 0, 0, 0));
        super.paintTabBackground(g2d, tabPlacement, tabIndex, x, y, w, h, isSelected);
    }
    g2d.dispose();

感谢您的帮助。

i would like to paint the selected tab in a different way than other tab, it works the first time but then the repaint doesn't work.

Here is the code i did inside paintTabBackground :

Graphics2D g2d = (Graphics2D) g.create();
    if (isSelected) {
        BufferedImage background = tabSelected;
        Insets insets = getTabInsets(tabPlacement, tabIndex);
        Rectangle tabBound = getTabBounds(tabPane, tabIndex);
        tileStretchPaint(g2d, tabBound, background, insets);
    } else {
        g2d.setColor(new Color(0, 0, 0, 0));
        super.paintTabBackground(g2d, tabPlacement, tabIndex, x, y, w, h, isSelected);
    }
    g2d.dispose();

Thanks for help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千柳 2024-11-18 03:45:22

只需投射图形

Graphics2D g2d = (Graphics2D) g;

而不丢弃它

Just cast the graphics

Graphics2D g2d = (Graphics2D) g;

and don't dispose it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文