私は wpf を使用しています。以下はイメージのステータスです。
<Image Source="{Binding ImageStatus}"  /> 
イメージステータス値が割り当てられている場合に、イメージステータスを変更するコードは次のとおりです。
    public readonly DependencyProperty ImageStatusProperty;
    public ImageSource ImageStatus
    {
        get { return (ImageSource)GetValue(ImageStatusProperty); }
        set { SetValue(ImageStatusProperty, value); }
リソースから画像が割り当てられたときに画像を変更したい。
ありがとうございました。