我想以不同于其他选项卡的方式绘制所选选项卡,它第一次起作用,但是重新绘制不起作用。

这是我在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();


感谢帮助。

最佳答案

只需投射图形

Graphics2D g2d = (Graphics2D) g;


不要处置

关于java - TabbedPaneUI绘制选定的选项卡,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6184156/

10-09 05:26