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.
如何在 SWT 上显示句柄/视觉指示SashForm?
SashForm
使用我的代码,没有反馈给用户,实际上有一个窗扇形式:
import org.eclipse.swt.custom.SashForm; // ... SashForm leftRightSashForm = new SashForm(panel, SWT.HORIZONTAL | SWT.SMOOTH);
AFAIK 目前没有办法改变 SashForm 分隔线的外观。
部分解决方案可能是更改 Sash 本身的背景颜色,这也会更改分隔线的颜色,如下所示:
sashForm.setBackground(sashForm.getDisplay().getSystemColor( SWT.COLOR_GRAY));