使用 MVVMLight 将命令绑定到 TreeViewItem 时出现问题
我正在尝试使用 MVVMLight 将 TreeViewItem Selected 事件绑定到命令。
TreeViewItem 是在 HierarchicalDataTemplate 中定义的,因此我无法添加 Interaction.Triggers(如下所示)
<HierarchicalDataTemplate
x:Key="TreeViewItemTemplate"
ItemsSource="{Binding ChildReportViewModels}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Selected">
<MvvmLight_Command:EventToCommand Command="{Binding LoadReportCommand, Mode=OneWay}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</HierarchicalDataTemplate>
我还能如何将 EventTrigger 添加到每个 TreeViewItem?
谢谢。
I'm trying to use MVVMLight to bind a TreeViewItem Selected event to a command.
The TreeViewItem's are defined in a HierarchicalDataTemplate so I cannot add Interaction.Triggers (as shown below)
<HierarchicalDataTemplate
x:Key="TreeViewItemTemplate"
ItemsSource="{Binding ChildReportViewModels}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Selected">
<MvvmLight_Command:EventToCommand Command="{Binding LoadReportCommand, Mode=OneWay}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</HierarchicalDataTemplate>
How else can I add the EventTrigger to each TreeViewItem?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我忘记了这个问题。
为了将来的参考,这是我使用的解决方案...
而不是尝试将 EventToCommand 绑定到 TreeView 的 Selected 事件,
我将其绑定到在 TreeViewItems 的 HierarchicalDataTemplate 中声明的 TextBlock 的 MouseLeftButtonUpEvent。
I forgot about this question.
For future ref, here's the solution I used...
Instead of trying to bind the EventToCommand to the Selected event of the TreeView,
I bound it to the MouseLeftButtonUpEvent of the TextBlock declared in the HierarchicalDataTemplate for TreeViewItems.
我对 MVVMLight 尤其是 EventTrigger 的了解不多。
但由于您的问题还没有答案,codeplex 文章 TreeViewWithViewModel 可能会有所帮助。它展示了如何绑定到 wpf-treeview 中的 SelectedItem 和 IsExpanded 属性,以及如何使用它们在树视图中实现按需加载。
I have not much knowledge about MVVMLight and especially about EventTrigger.
But since there is no answer to your qestion yet the codeplex article TreeViewWithViewModel might help. It shows how to bind to SelectedItem and IsExpanded Properties in a wpf-treeview and how these can be used to implement load on demand in the treeview.