
I have a ListView with a bunch of elements in it (the “Considerations” column with the blue elements), and those elements have a little square to their right that you can click & drag
I need to make sure that when I click on that square specifically, the list element doesn’t get selected, but I can’t figure out how to do this. My draggable square is a simple VisualElement with a custom MouseManipulator for drag n drop functionality. That manipulator registers to MouseDownEvent callbacks, and calls “e.StopPropagationImmediate();”, but the MouseDownEvent of my draggable square gets detected after the list element click, so the list element still gets selected