如何在另一个用户控件中发生事件时更新用户控件?

时间:2010-09-24 14:57:38

标签: c# .net wpf mvvm

在我的窗口中,我有树视图和文本块。树视图绑定到视图模型。树节点绑定到另一个视图模型。树视图模型提供顶级树节点列表,树节点视图模型提供节点子节点列表。在我的视图模型中,树中没有当前所选节点的概念。

在文本块中我想显示当前所选树节点的视图模型的已知属性的值。

我的问题是这是如何以正确的MVVM方式完成的?我宁愿在XAML中这样做。我应该将属性添加到当前所选节点的树视图模型,然后简单地将文本块绑定到此属性?如果是这样,我将如何向树视图模型传达树视图已更改其当前节点的事实?

或者我能区别对待吗?我不知道怎么......

编辑:让我重新解释一个问题:当视图模型的IsSelected属性变为true时,如何将文本块内的文本设置为与所选项对应的视图模型的Name属性?

2 个答案:

答案 0 :(得分:1)

您可以使用MVVM Light Messaging,它可以轻松地以分离的方式在视图模型之间进行通信。

这里很好的例子:http://chriskoenig.net/2010/07/05/mvvm-light-messaging/

MVVM Light Toolkit可以在这里下载:http://mvvmlight.codeplex.com/

答案 1 :(得分:1)

只需绑定SelectedItem元素本身的TreeView即可。

这是一个使用XmlDataProvider的非常简单的示例。 DataTemplate上的ContentPresenter是神奇发生的地方:

<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Page.Resources>
    <XmlDataProvider x:Key="Data" XPath="Tree">
      <x:XData>
        <Tree xmlns="" Text="Test">
          <Node Text="Weapon">
            <Node Text="Sword">
              <Node Text="Longsword"/>
              <Node Text="Falchion"/>
              <Node Text="Claymore"/>
            </Node>
            <Node Text="Polearm">
              <Node Text="Halberd"/>
              <Node Text="Pike"/>
            </Node>
          </Node>
          <Node Text="Armor">
            <Node Text="Cloth Armor"/>
            <Node Text="Leather Armor"/>
            <Node Text="Ring Mail"/>
            <Node Text="Plate Mail"/>
          </Node>
          <Node Text="Shield">
            <Node Text="Buckler"/>
            <Node Text="Tower Shield"/>
          </Node>
        </Tree>
      </x:XData>
    </XmlDataProvider>
    <HierarchicalDataTemplate x:Key="NodeTemplate" ItemsSource="{Binding XPath=Node}">
      <TextBlock Text="{Binding XPath=@Text}"/>
    </HierarchicalDataTemplate>
  </Page.Resources>
  <DockPanel>  
    <TreeView 
      x:Name="Objects" 
      ItemsSource="{Binding Source={StaticResource Data}, XPath=Node}"
      ItemTemplate="{StaticResource NodeTemplate}"/>
    <ContentPresenter Content="{Binding ElementName=Objects, Path=SelectedItem}">
      <ContentPresenter.ContentTemplate>
        <DataTemplate>
          <TextBlock Text="{Binding XPath=@Text}"/>
        </DataTemplate>
      </ContentPresenter.ContentTemplate>
    </ContentPresenter>
  </DockPanel>
</Page>