MediaElement.IsFullWindow Property

Definition

Gets a value that specifies if the MediaElement is rendering in full window mode. Setting this property enables or disables full window rendering.

public:
 property bool IsFullWindow { bool get(); void set(bool value); };
bool IsFullWindow();

void IsFullWindow(bool value);
public bool IsFullWindow { get; set; }
var boolean = mediaElement.isFullWindow;
mediaElement.isFullWindow = boolean;
Public Property IsFullWindow As Boolean
<MediaElement IsFullWindow="bool" />

Property Value

Boolean

bool

true if the MediaElement is in full window mode; otherwise, false. The default is false.

Remarks

Setting and un-setting this property enables and disables full window rendering.

Always use the IsFullWindow property to enable and disable full window rendering. This ensures system level optimizations are used during media playback.

When in full-window mode, input events received on the MediaElement will still route through to the visual tree in the background. For example, if the MediaElement is in a ListBox, turning the scroll wheel could cause the ListBox to scroll in the background. This can cause unexpected behavior. If input events should not be routed when in full-window mode, the MediaElement should handle the events.

Applies to