Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在基于 Eclipse rcp 的应用程序中使用 NatTable。每当我单击一个单元格或反复滚动 nattable 闪烁(可能在油漆或重绘上)时有没有办法避免这种行为?
从Class NatTable 我可以发现SWT.DOUBLE_BUFFERED被用作默认样式选项之一。
在我的构造函数中添加SWT.DOUBLE_BUFFERED作为样式选项时,
NatTable natTable = new NatTable(parentComposite, SWT.DOUBLE_BUFFERED);
我可以发现闪烁减少了。