我有6个JList,我想只选择1个Jlist,实际上我在每个JList MouseClicked事件中都这样做。
if (this.isSelected) {
Jlist2.clearSelection();
Jlist3.clearSelection();
Jlist4.clearSelection();
Jlist5.clearSelection();
Jlist6.clearSelection();
}
所有JList都在BoxLayout中,是否有办法为此创建一个组或另一个approch?