10

我有一个控件,在该控件中我有一个带有数据模板的资源:

  <DataTemplate DataType="{x:Type local:FlowModel}">
    <Image Source="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type vm:MainViewModel}}, Path=MainViewModel.ImagePath}"/>
  </DataTemplate>

 xmlns:vm="clr-namespace:CortexMonitoringTool.ViewModel"

我将 vm 设置为我的 ViewModel 文件夹,我正在实现 mvvm。我无法让我的绑定工作,我不确定为什么不。

有人能告诉我我的相对绑定是否正确,它是否真的可以在我的 MainViewModel 类中看到我的属性“ImagePath”?

public String ImagePath
    {
        get
        {
            return _imagePath;
        }
        set
        {
            if (_imagePath == value)
            {
                return;
            }
            _imagePath = value;
            RaisePropertyChanged("ImagePath");
        }
    }

谢谢你。

4

2 回答 2

14

嗨,我设法让它工作。

  <DataTemplate DataType="{x:Type local:FlowModel}">
    <Image Source="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}, Path=DataContext.ImagePath}"/>
  </DataTemplate>

我将我的 AncestorType 更改为“Window”,它已准备好绑定到我的 MainViewModel,然后使用“DataContext”。在我的路径中能够看到我的财产。

希望这对其他人有帮助!

于 2012-05-30T10:40:36.307 回答
5

您的视图模型不是您的可视树的一部分。所以 find 祖先类型在那里不起作用。并且如果您找到具有数据上下文的根父级,那么您可以使用它的属性与 like 绑定。

<Image Source={...... Path=DataContext.MyProperty}"/>
于 2012-05-30T11:36:53.037 回答