0

私は wpf を使用しています。以下はイメージのステータスです。

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

イメージステータス値が割り当てられている場合に、イメージステータスを変更するコードは次のとおりです。

    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 に答える