AWTUtilities.setWindowOpaque 导致一些文本绘制问题
我正在尝试创建一个带有抗锯齿圆角的不透明 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请记住:如果您使用 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..