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);
私の知る限り、現在、SashForm ディバイダーの外観を変更する方法はありません。
部分的な解決策は、次のように、Sash 自体の背景色を変更することです。これにより、仕切りの色も変更されます。
sashForm.setBackground(sashForm.getDisplay().getSystemColor( SWT.COLOR_GRAY));