0
You need just to add SelectionChanged Event in your ListBox tag.
like <ListBox Name="myListBox" SelectionChanged="myListBox_SelectionChanged" ...>
<ListBox.ItemTemplate>
<DataTemplate>
<Button Name="MyButton" Content="{Binding ShowData}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>