保持元素显示在全屏UWP应用程序中
以下是我的设计,其中包含媒体元素,播放,暂停,完整窗口和寻求者。
<MediaElement x:Name="VideosMediaElement" VerticalAlignment="Top"
Height="250" Width="355" Margin="0,20,0,0"
BufferingProgressChanged="VideosMediaElement_BufferingProgressChanged"
RealTimePlayback="True"
/>
<Grid x:Name="mediaGrid">
<Border VerticalAlignment="Bottom" Height="60" Background="Black"
Opacity="0.1">
</Border>
<Image x:Name="PlayIcon" Source="Assets/Play-icon.png"
Height="35" HorizontalAlignment="Left" VerticalAlignment="Bottom"
Margin="3,0,0,10" Visibility="Collapsed" Tapped="PlayIcon_Tapped">
</Image>
<Image x:Name="PauseIcon" Source="Assets/Pause.png"
Height="35" HorizontalAlignment="Left" VerticalAlignment="Bottom"
Margin="3,0,0,10" Tapped="PauseIcon_Tapped" Visibility="Visible">
</Image>
<TextBlock x:Name="duration" Foreground="White" VerticalAlignment="Bottom"
Margin="43,0,0,20">
</TextBlock>
<ProgressBar x:Name="videoProgressBar" VerticalAlignment="Bottom"
Margin="15 0 10 25" Foreground="DarkBlue" Background="Gray"
Width="180" Height="10" Minimum="0"
Maximum="{Binding Path=NaturalDuration.TimeSpan.TotalSeconds,
Mode=TwoWay,
ElementName=VideosMediaElement}"
Value="{Binding Path=Position.TotalSeconds, Mode=TwoWay,
ElementName=VideosMediaElement}"
Tapped="videoProgressBar_Tapped"
/>
<TextBlock x:Name="maximumDuration" Foreground="White" Margin="0,0,40,20"
VerticalAlignment="Bottom" HorizontalAlignment="Right">
</TextBlock>
<Image x:Name="ExpandEnabled" Source="Assets/Fullscreen.png"
Tapped="Zoom_Tapped" Height="35" Margin="0 0 3 10"
HorizontalAlignment="Right" VerticalAlignment="Bottom">
</Image>
</Grid>
如果我点击右侧的完整窗口图标,则视频将显示为带有播放,暂停,导引和全窗口按钮的完整窗口。
VideosMediaElement.IsFullWindow = true;
<MediaElement x:Name="VideosMediaElement" VerticalAlignment="Top"
Height="300" Width="360"
BufferingProgressChanged="VideosMediaElement_BufferingProgressChanged"
AreTransportControlsEnabled="True">
<MediaElement.TransportControls>
<MediaTransportControls IsCompact="True" IsZoomButtonVisible="False"
IsZoomEnabled="False"
IsPlaybackRateButtonVisible="True"
IsPlaybackRateEnabled="True"
/>
</MediaElement.TransportControls>
</MediaElement>
视频在整个窗口中播放,但是当我设置IsWindowFull
属性时,播放,暂停和搜索者正在隐藏。 如何在媒体元素处于完整窗口时显示这些控件?
您可以检查Live Visual Tree以在运行时检查您的布局:
当MediaElement
进入FullScreen
模式时, FullWindowMediaRoot
将托管MeidiaElement
并且mediaGrid
不会显示mediaGrid
。 一种方法是@Chris W.说使用MediaElement
的TransportControls
,但是这在Windows 8.1应用程序中不可用,因为您开发了Windows Phone 8.1应用程序,所以不存在这样的问题。
由于WP8.1不支持自定义传输控制,对于Windows Phone 8.1应用程序,您可以手动将MediaElement
的Width
和Height
设置为应用程序的大小,例如:
VideosMediaElement.Width = Window.Current.Bounds.Width;
VideosMediaElement.Height = Window.Current.Bounds.Height;
由于该应用在WP8.1上以全屏模式运行,因此该方法也将使MediaElement
看起来像是全屏模式。 当你想“退出全屏模式”,你可以重置Height
和Width
属性。