0

我正在使用 wpf,以下是我的图像状态:

<Image Source="{Binding ImageStatus}"  /> 

这是分配图像状态值时更改 iamge 状态的代码:

    public readonly DependencyProperty ImageStatusProperty;

    public ImageSource ImageStatus
    {
        get { return (ImageSource)GetValue(ImageStatusProperty); }
        set { SetValue(ImageStatusProperty, value); }

我想在从资源分配图像时更改图像。

谢谢你。

4

1 回答 1

1

DependencyProperty一定是static建议阅读

于 2012-10-01T08:15:07.863 回答