The functionality I want is to have a remove button beside each item of a listbox so when the user clicks it, that specific item gets removed from the list.
I am thinking about putting it in the data template but how would I wire up an even to that?
Thanks,
Shawn Mclean
Here is one way to approach this issue. Create an ObservableCollection and set you ItemsSource equal to that Collection. Then your Button click handler can just remove the item.
In this sample your XAML would look like this: