Home > Java > javaTutorial > body text

Java List double-click event implementation method

高洛峰
Release: 2017-01-22 17:01:24
Original
1535 people have browsed it

The example in this article briefly describes the Java List double-click event implementation method, which has good reference value. Share it with everyone for your reference. The specific method is as follows:

1. Define a MouseListener;

2. Add mouseClicked event in mouseListener;

3. Obtain the List object from MouseEvent's getSource();

4. Obtain the Index of the clicked item from the getSelectedIndex() event of List;

5. According to the Index, use the getItem() method of List to obtain the clicked item;

6. Finally, use addMouseListener() to add the defined MouseListener to the List.

// 双击鼠标事件
MouseListener mouseListener = new MouseAdapter() {
   public void mouseClicked(MouseEvent mouseEvent) {
 List theList = (List) mouseEvent.getSource();
 if (mouseEvent.getClickCount() == 2) {
   int index = theList.getSelectedIndex();
   if (index >= 0) {
  String s = theList.getItem(index);
   }
 }
   }
};
lstRoster.addMouseListener(mouseListener);
Copy after login

I hope this article will be helpful to everyone’s Java programming.

For more articles related to Java List double-click event implementation methods, please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!