| |
17. 23. 1. 名单和列表样式 |
|
List boxes display lists of strings and allow users to select one or more of them. |
Style | Effect | SWT.BORDER | Draws a border around this List. | SWT.SINGLE | Creates a List that allows selection of only one item at a time. This is the default. | SWT.MULTI | Creates a List that allows selection of multiple items at a time. You may specify only one of SWT.SINGLE or SWT.MULTI. | SWT.H_SCROLL | Creates a horizontal scrollbar to scroll this List. | SWT.V_SCROLL | Creates a vertical scrollbar to scroll this List. |
|
|