I have a ListView with StackPanel as ListView Items. The StackPanel has a contextmenu which is displayed on Right Click. I can rearrange the StackPanel order using drag and drop operation.
The problem is, when I select and Right click on a StackPanel (ListViewItem) context menu is displayed, then I click on another StackPanel (other ListViewItem), DragEnter, DragOver and DragLeave events are getting triggered.
Simple Right and Left click operation is interpreted as Drag Drop. I tried setting mouse right button Up and Down event to handled true but no use. How can I differentiate this scenario with real drag drop operation?