How to detect double click on list view scroll bar?

后端 未结 4 1645
长情又很酷
长情又很酷 2021-02-20 00:40

I have two list view on WPF. The first listview is loaded with a Datatable. When double clicking on one item from the first listview, the selectedItem is moved to the second lis

4条回答
  •  Happy的楠姐
    2021-02-20 01:15

    Try this in you MouseDoubleClick event on the first Listview:

    DependencyObject src = VisualTreeHelper.GetParent((DependencyObject)e.OriginalSource);
    
    if(src is Control && src.GetType() == typeof(ListViewItem))
    {
        // Your logic here
    }
    

    Based on this.

    I am using this in various projects and it solves the problem you are facing.

提交回复
热议问题