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.
我需要使用与微调器小部件中的按钮具有相同功能的小部件。在其他方面,我需要一个没有文本字段的微调器。是否可以只获取按钮?由于可移植性问题,我不想编写自己的小部件。
和平,尼克
我不认为你能从中得到任何东西Spinner。
Spinner
您可以Button使用箭头样式创建:
Button
Button button = new Button(composite, SWT.ARROW | SWT.UP);
(或SWT.DOWN, SWT.LEFT, SWT.RIGHT)。
SWT.DOWN
SWT.LEFT
SWT.RIGHT