I use PyWinAuto to automate my WPF application. I need to drag an item from a TreeView to a ListView.
I used to do the dragging. The item is clicked and then the mouse appears in the correct position, but the item is not dragged.
This is my code:
itemOperations_1.drag_mouse_input(
dst=getSetLV.rectangle().mid_point(),
src=(itemOperations_1.rectangle().left + 50, itemOperations_1.rectangle().top + 10))