MediaPlayerElement.PosterSource 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 the image source that is used for a placeholder image during MediaPlayerElement loading transition states.
public:
property ImageSource ^ PosterSource { ImageSource ^ get(); void set(ImageSource ^ value); };
ImageSource PosterSource();
void PosterSource(ImageSource value);
public ImageSource PosterSource { get; set; }
var imageSource = mediaPlayerElement.posterSource;
mediaPlayerElement.posterSource = imageSource;
Public Property PosterSource As ImageSource
<MediaPlayerElement PosterSource="imageUri" />
Property Value
An image source for a transition ImageBrush that is applied to the MediaPlayerElement content area.
Remarks
A PosterSource is an image, such as a album cover or movie poster, that is displayed in place of video. It provides your MediaPlayerElement with a visual representation before the media is loaded, or when the media is audio only.
The PosterSource is displayed in the following situations:
- When a valid source is not set. For example, Source is not set, Source is set to Null, or the source is invalid (as is the case when a MediaFailed event fires).
- While media is loading. For example, a valid source is set, but the MediaOpened event has not fired yet.
- While media is streaming to another device.
- When the media is audio only.