0
我無法從JList
中刪除一個項目。以下代碼已放在JButton
上。如何獲取JList中的項目並將其刪除?
DefaultListModel model = (DefaultListModel) list1.getModel();
int selectedIndex = list1.getSelectedIndex();
if (selectedIndex != -1)
{
model.remove(selectedIndex);
}
有你的問題標題和問題內容之間沒有關係? – vels4j
你遇到了什麼問題?你的代碼對我來說看起來很好。 – Amarnath
@che Jlist中的項目沒有被刪除 – VVV