鼠标点击jlist控件时,触发ValueChanged事件
getValueIsAdjusting:如果list选项改变,返回true.
jlist.getSelectedIndex:得到list中被选中的项.
示例:
if (evt.getValueIsAdjusting()) {
int index = this.jList1.getSelectedIndex();
System.out.println(index);
Object o = this.jList1.getModel().getElementAt(index);
System.out.println(o);
}
阅读(2357) | 评论(0) | 转发(0) |