我在我的应用程序资源中声明了以下上下文菜单,并且我的应用程序中的几个树视图引用了它。我正在尝试将TreeView的SelectedItem属性作为命令参数发送。
问题是,我无法弄清楚如何获取发送TreeView的SelectedItem的命令。
参数始终为null。我尝试过使用相关来源,模板化父母等;以及寻找treeview,treeviewitem和datacontext的目标。我也试过发送这些项的不同属性(不仅仅是TreeView的SelectedItem)。我似乎无法解决任何问题。
<Application.Resources>
<ContextMenu x:Key="ContextMenu.TreeView">
<MenuItem
Header="Add Node"
Command="{Binding AddNodeCommand}"
CommandParameter="{Binding Path=SelectedItem, RelativeSource={RelativeSource AncestorType={x:Type TreeView}}}"></MenuItem>
<MenuItem
Header="Delete Node"
Command="{Binding DeleteNodeCommand}"
CommandParameter="{Binding Path=SelectedItem,RelativeSource={RelativeSource AncestorType={x:Type TreeView}}}"></MenuItem>
</ContextMenu>
</Application.Resources>
<UserControl ...>
<TreeView
x:Name="TaxonomyTree"
ItemsSource="{Binding Path=Tree}"
ContextMenu="{StaticResource ContextMenu.TreeView}"/>
</UserControl>
答案 0 :(得分:1)
尝试:
<ContextMenu x:Key="ContextMenu.TreeView">
<MenuItem Command="{Binding AddNodeCommand}"
CommandParameter="{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type ContextMenu}},
Path=PlacementTarget.SelectedItem}"
Header="Add Node" />
<MenuItem Command="{Binding DeleteNodeCommand}"
CommandParameter="{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type ContextMenu}},
Path=PlacementTarget.SelectedItem}"
Header="Delete Node" />
</ContextMenu>
Contextmenu
不是与其链接的TreeView
相同的Visual树的一部分。因此,我们需要使用PlacementTarget
相应地路由到TreeView
。