我使用的是wpf,下面是我的图像状态:
<Image Source="{Binding ImageStatus}" />
以下是分配图像状态值时更改iamge状态的代码:
public readonly DependencyProperty ImageStatusProperty;
public ImageSource ImageStatus
{
get { return (ImageSource)GetValue(ImageStatusProperty); }
set { SetValue(ImageStatusProperty, value); }
我希望在从资源中分配图像时更改图像。
谢谢。