I created a ListBox
that has a DataTemplate
as Itemtemplate
. However, is there an easy way to access the generated UIElement
instead of the SelectedItem
in codebehind?
When I access SelectedItem
, I just get the selected object from my
ItemsSource
collection. Is there a way to access the UIElement
(ie. the
element generated from the DataTemplate
together with the bound object)?