I have a listview for displaying a table inside of a button. I have a click event assigned to the button, but when the user clicks on the list view, a row is selected on the list view and the mouse click is never bubbled up to the button.
I’m stuck at this point, and need a way to solve this. All the examples I’ve seen online are for placing a button inside the listview. How do I make this work?

Set the
IsHitTestVisibleproperty tofalseon yourListView. Since it is a control that normally processes click events, doing this will have it ignore them.