C# How to Identify Caller for Template Events
- by mikeknoop
I have a ListBox container data bound and templatized as so:
<ListBox x:Name="ListBox"
ItemsSource="{Binding Source={StaticResource List}}"
ItemTemplate="{StaticResource ListTemplate}">
</ListBox>
Within my ListTemplate resource, I define a Grid which contains a few child elements. I have setup a…