c# – 使用MVVM的WPF:使用RelativeSource的DataBinding

前端之家收集整理的这篇文章主要介绍了c# – 使用MVVM的WPF:使用RelativeSource的DataBinding前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个控件,在该控件内,我有一个带有数据tempalte的资源:
<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");
        }
    }

谢谢.

解决方法

您查看模型不是Visual树的一部分.所以找到祖先类型不会在那里工作.如果您找到具有datacontext的根父级,则可以使用其属性与like绑定.
<Image Source={...... Path=DataContext.MyProperty}"/>
原文链接:https://www.f2er.com/csharp/101131.html

猜你在找的C#相关文章