I have a WPF application. There is a listview in which a every time I click or double click, the click event fires up. Even if I keep the Click Event, it automatically fires up
Add a handler to your control:
...
The handler code:
private void MyMouseHandler(object sender, MouseButtonEventArgs e) { if (e.ClickCount == 2) { //Handle here } }