使用属性更改图像

时间:2012-10-01 03:58:39

标签: c# wpf xaml

我使用的是wpf,下面是我的图像状态:

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

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

    public readonly DependencyProperty ImageStatusProperty;

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

我希望在从资源中分配图像时更改图像。

谢谢。

1 个答案:

答案 0 :(得分:1)

您的DependencyProperty必须是staticSuggested reading