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