作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想以与其他选项卡不同的方式绘制所选选项卡,它第一次可以工作,但随后重新绘制不起作用。
这是我在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/
我想以与其他选项卡不同的方式绘制所选选项卡,它第一次可以工作,但随后重新绘制不起作用。 这是我在paintTabBackground中执行的代码: Graphics2D g2d = (Graphics
我是一名优秀的程序员,十分优秀!