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.
我有一个 3 Jlist,第一个包含应用程序的名称。第二个用于放置要安装的应用程序的名称,第三个用于放置要卸载的应用程序的名称。但它并不美丽。我想要一个列表,每个列表都有两个单选按钮列表,我们可以选择安装或卸载,但我不知道如何在摇摆中做到这一点。
您可能会查看双列JTable,第一列中包含名称,第二列中包含 a JComboBox。将JComboBox指定或install,默认为。此示例显示如何指定具有. 有关更多信息,请参阅如何使用表格。这里提到了一些相关的替代方案。uninstallunchangedunchangedDefaultCellEditorJComboBox
JTable
JComboBox
install
uninstall
unchanged
DefaultCellEditor
我没有很清楚地了解情况。 试试这个。 取 2 JRadioButton、 1JButtonGroup和 3 JList。将这 2 个单选按钮的buttonGroup属性设置为JButtonGroup. 然后在每个单选按钮的事件上编写代码onClick以启用相应的 JList 并禁用另一个JList。 我希望这将有所帮助。
JRadioButton
JButtonGroup
JList
onClick