RatingItemImageInfo.DisabledImage Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets an image that represents a rating element that is disabled.
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"/>
Property Value
An object that represents the image source file for the drawn image. Typically you set this with a BitmapImage object, constructed with the Uniform Resource Identifier (URI) that describes the path to a valid image source file. Or, you can initialize a BitmapSource with a stream, perhaps a stream from a storage file.