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,我想创建一个新控件,其中包括一个文本(org.eclipse.swt.widgets.Text)和一个按钮(org.eclipse.swt.widgets.Button),文本在左侧,按钮在右侧。
我花了很多努力寻找一个例子,但我没有找到......谁能给我一个很好的例子?非常感谢!
你可以通过扩展来做到这一点Composite。在复合材料中,您可以根据需要使用所需的布局添加任何小部件。
Composite
你可以看看CCombo类。CCombo 模仿 Combo 小部件。CCombo 是查看自定义小部件设计的好例子。