gpt4 book ai didi

java - JList 元素上的双击事件

转载 作者:IT老高 更新时间:2023-10-28 13:51:51 25 4
gpt4 key购买 nike

我有一个带有 DefaultListModelJList

如何使 JList 中的项目响应双击事件?

最佳答案

String[] items = {"A", "B", "C", "D"};
JList list = new JList(items);

list.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent evt) {
JList list = (JList)evt.getSource();
if (evt.getClickCount() == 2) {

// Double-click detected
int index = list.locationToIndex(evt.getPoint());
} else if (evt.getClickCount() == 3) {

// Triple-click detected
int index = list.locationToIndex(evt.getPoint());
}
}
});

关于java - JList 元素上的双击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4344682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com