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.
以下是一个用户界面:
UI中有一个向上按钮和一个向下按钮,当单击向上/向下按钮时,左侧表格中的选定项目(例如lib/logger.jar)(我假设它是一个表格,因为我将创建一个表格显示我的应用程序中的项目)将向上/向下移动。
问题:如何为上/下按钮添加功能,使点击上/下按钮后表格中的项目会移动?
顺便说一句,我正在使用 Java SWT/JFace。
如果它是一张桌子,您将使用TableItems. 要移动 TableItem,您必须处理要移动的 TableItem 并使用接收索引作为其参数之一的构造函数创建一个新的。该索引是放置新 TableItem 的位置。
TableItems