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.
list = new List(composite, SWT.V_SCROLL | SWT.BORDER | SWT.SINGLE);
我如何定义一个 SWT LIST 以便我可以取消选择所有项目?我有一个场景,根本不需要选择任何项目......
似乎唯一有效的 SWT 标志是 SINGLE 和 MULTI
谢谢。
我认为没有任何规定可以创建没有可选择性的列表。如果它是仅显示的小部件,您可能应该使用 aTable或 multilineText代替。
Table
Text
您可以添加一个SelectionListener名为deselectAll(). 这有点俗气,但它可能会奏效。
SelectionListener
deselectAll()