0

我不知道如何绑定我的图像:

<Image Source="{ Binding  Path=ViewModel.MainViewModel.ProcessedImage }" Name="image1"/>

到 DependencyProperty ProcessedImage,这是我从 DependencyObject 派生的自定义类的子元素:

class ViewModel : DependencyObject
{
    public static ViewModel MainViewModel { get; set; }

    [...]

    public BitmapImage ProcessedImage
    {
        get { return (BitmapImage)this.GetValue(ProcessedImageProperty); }
        set { this.SetValue(ProcessedImageProperty, value); }
    }
    public static readonly DependencyProperty ProcessedImageProperty = DependencyProperty.Register(
      "ProcessedImage", typeof(BitmapImage), typeof(ViewModel), new PropertyMetadata());
}

我希望你能帮助我解决这个问题。我尝试了不同的方法,但似乎没有任何效果。

4

1 回答 1

1

您如何设置数据上下文?我复制了您的代码并添加了另一个属性 - ProcessedImageName,默认值为“Hello World”

public static readonly DependencyProperty ProcessedImageNameProperty = DependencyProperty.Register(
        "ProcessedImageName", typeof(string), typeof(ViewModel), new PropertyMetadata("Hello World"));

    public string ProcessedImageName {
get { return (string)this.GetValue(ProcessedImageNameProperty); }
set { this.SetValue(ProcessedImageNameProperty, value); }}

我将数据上下文设置如下:

    public MainWindow()
    {
        InitializeComponent();
        ViewModel.MainViewModel = new ViewModel();
        DataContext = ViewModel.MainViewModel;
    }

我将绑定路径设置为:

<TextBlock Text="{Binding Path=ProcessedImageName }"/>

就个人而言,我不会继续使用静态 MainViewModel 属性,而是像这样新建一个 ViewModel 实例

    public MainWindow()
    {
        InitializeComponent();
        DataContext = new ViewModel();
    }

属性的路径是相对于数据上下文的,因此如果属性是 Class.PropertyName 而数据上下文是 Class,那么绑定路径就是 PropertyName。

于 2013-04-17T04:15:02.787 回答