RatingItemImageInfo.DisabledImage 属性

定义

获取或设置表示已禁用的分级元素的图像。

public:
 property ImageSource ^ DisabledImage { ImageSource ^ get(); void set(ImageSource ^ value); };
ImageSource DisabledImage();

void DisabledImage(ImageSource value);
public ImageSource DisabledImage { get; set; }
var imageSource = ratingItemImageInfo.disabledImage;
ratingItemImageInfo.disabledImage = imageSource;
Public Property DisabledImage As ImageSource
<RatingItemImageInfo DisabledImage="uri"/>

属性值

一个 对象,该对象表示所绘制图像的图像源文件。 通常,使用 BitmapImage 对象进行设置,该对象使用统一资源标识符 (URI) 构造,用于描述有效图像源文件的路径。 或者,可以使用流(可能是存储文件中的流)初始化 BitmapSource

适用于