我不知道如何绑定我的图像:
<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());
}
我希望你能帮助我解决这个问题。我尝试了不同的方法,但似乎没有任何效果。