AWTUtilities.setWindowOpaque 导致一些文本绘制问题

发布于 2024-09-04 10:05:59 字数 441 浏览 5 评论 0原文

我正在尝试创建一个带有抗锯齿圆角的不透明 JWindow 。为此,我调用该方法:

AWTUtilities.setWindowOpaque(this, false);

并使用自定义 JPanel 来绘制实际的圆角。

在窗口中,我有一个 JList。每当setWindowOpaque 设置为 false 时,JList 中的文本就会稍微“扭曲”(即,它仍然可读,但很明显)。

我正在尝试弄清楚如何解决这个问题。可以使用 AWTUtilities.setWindowShape 设置窗口形状本身,但这会导致非抗锯齿形状。

作为记录,我在装有 JDK 1.6 update 20 的 Windows 7 计算机上对此进行测试。

I am attempting to create an opaque JWindow with antialiased rounded corners. In doing so, I call the method:

AWTUtilities.setWindowOpaque(this, false);

And use a custom JPanel which paints the actual rounded corners.

Within the window, I have a JList. Whenever setWindowOpaque is set to false, the text within the JList becomes "distorted" slightly (i.e. it is still readable but it is noticable).

I'm trying to figure out exactly how to resolve this issue. It is possible to set the window shape itself using AWTUtilities.setWindowShape but this results in a non-antialiased shape.

For the record, I'm testing this on a Windows 7 machine with JDK 1.6 update 20.

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

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

发布评论

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

评论(1

心病无药医 2024-09-11 10:05:59

请记住:如果您使用 Sun 类,您的代码将只能在 Sun JRE 上运行,而不能在 IBM、Blackdown、IcedTea 上运行。

Remember: If you use Sun classes, your code will only run on a Sun JRE, but not IBM, Blackdown, IcedTea..

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