I\'ve a data template for ListBoxItem which contains of few buttons, and few custom controls like Grid or Chart. Each button is bound to an appropriate command handler, Sel
If you are only interested in the item 'underneath' the data template you can use a CommandParameter with a the binding as a argument.
CommandParameter={Binding}
This will pass the current item as a parameter to the command, so no need to track the selected item.