Find TreeViewItem to drop data
问题 I want to drag data from a ListView and drop it in a TreeView(the draging works fine). I use DataBinding and ItemTemplate to fill the TreeView. <TreeView ItemsSource="{Binding Groups}" Name="tvGroups" AllowDrop="True" Drop="tvDrop" DragOver="tvDragOver"> <TreeView.ItemTemplate> <HierarchicalDataTemplate ItemsSource="{Binding Participants}"> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding Name}" /> <Button Tag="{Binding .}" Click="Button_Click_2"> <Image Source="Resources/cross