I've got a TreeView which contains a number of TreeViewItems. Each TreeViewItem contains a horizontally-oriented StackPanel which in turn contains an image and a label.
When the user clicks on the TreeViewItem, I would like to get a reference for that TreeViewItem. Instead, the source is returning as either label or image, depending on which part of the TreeViewItem the user clicks on.
I cannot use the selectedItemChanged event, as this is strictly an operation which must occur every time a TreeViewItem is clicked.
Here is my XAML:
<TreeView DockPanel.Dock="Left"
Name="tvSchema"
AllowDrop="True"
TreeViewItem.PreviewMouseLeftButtonDown="tvSchema_PreviewMouseLeftButtonDown">
</TreeView>
And here is the code which attempts to retrieve the selected TreeViewItem when the user clicks on one:
private void tvSchema_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
object x = e.OriginalSource; //Returns TextBlock
object y = e.Source; //Returns Label
object z = sender; //Returns TreeView
}
What can be done to get the actual TreeViewItem?
