SWT中图像闪烁
我正在构建一个 SWT 应用程序,我在其中使用了 ScrolledComposite
和 Composite
。它有更多的按钮和复选框。所有这些都在Composite
内。
现在我尝试将这个主要组合放入选项卡中。它工作正常,但即使我不滚动或调整大小,图像也会闪烁很多。如果我将这个主要复合材料放入外壳内,它的工作完美,没有任何闪烁。
为什么会发生这种情况?
I am building an SWT application, I have used a ScrolledComposite
and a Composite
inside that. This has a few more buttons and checkboxes . All this is inside a Composite
.
Now I tried to put this main composite in the tab. It worked fine but the image flickers a lot even if I don't scroll or resize. If I put this main composite inside a shell, its working perfect without any flicker.
Why is this happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否在 复合?这可能会解决它。
Did you set the
SWT.DOUBLE_BUFFERED
style bit on your Composite? That might fix it.在声明中写入
SWT.DOUBLE_BUFFERED
示例:
Write
SWT.DOUBLE_BUFFERED
in declarationExample: