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.
我真的很想就如何处理以下要求提供一些建议。
我将创建一个新对话框。在对话框中我想要 2 个框。1 个带有填充值的框,另一个为空。我还需要一个添加和删除按钮。他们会将选定的值从一个框移动到另一个框。
这是我需要编码的示例。
我真的在寻找有关使用框或表格以及如何布局组件以实现类似上图的建议的建议。
看看DualList蛋白石项目。这应该正是您想要的。
DualList
如果你想自己做,可以使用两个Tables,每个只有一列,或者两个Lists。
Table
List
布局将是:
Composite(GridLayout, 3 columns) | |- First List/Table | |- Composite(GridLayout, 1 column) | |- Button add | |- Button delete | |- Second List/Table
编辑:
事实上,设计的东西非常相似,作为对不同问题的答案。看看我的回答here。