我正在使用SWT ScrolledComposite但是当我在Windows中滚动时,如果我滚动到快速,我会得到一些撕裂/闪烁。我该怎么做才能缓冲或减少这种效果,或者我该怎么做才能覆盖默认的滚动功能并使其滚动更顺畅?滚动区域中有文本框,所以我认为画布不起作用。
答案 0 :(得分:0)
诀窍是延迟播放并使用单像素滚动。
以下是我实际执行此操作的部分代码:
public void scrollOnePixelUp() {
scrolledComposite.getContent().setLocation(0, scrolledComposite.getContent().getLocation().y - 1);
}
public void scrollOnePixelDown() {
scrolledComposite.getContent().setLocation(0, scrolledComposite.getContent().getLocation().y + 1);
}
private int pixelScrollDelay = 50;//ms
scrollingThread = new Thread() {
public void run() {
doScrolling = true;
int i = 0;
while((i < scrollLength) && running && doScrolling) {
i++;
if (d.isDisposed())
return;
d.asyncExec(new Runnable() {
public void run() {
if (scrollUp)
scrollOnePixelUp();
else
scrollOnePixelDown();
}
});
try {
sleep(pixelScrollDelay);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
doScrolling = false;
}
};
希望有所帮助!