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.
ListViewer のアイテムをスクロール可能にする方法を誰かが共有できますか? ソースコードはより役に立ちます。
ありがとう。
SWT.H_SCROLL | SWT.V_SCROLLコンストラクターの2番目の引数として追加するだけです。
SWT.H_SCROLL | SWT.V_SCROLL
ListViewer v = new ListViewer(shell, SWT.H_SCROLL | SWT.V_SCROLL);
これがスニペットです。シェルのサイズを十分に小さくすると、スクロールバーが表示されます。