windows phone 8.1 silverlight mediaelement自动旋转
问题描述:
我是新手,在windows phone 8.1 silverlight开发中。当我将手机垂直转向水平时,我需要自动旋转媒体元素的帮助。 请帮我解决这个问题。windows phone 8.1 silverlight mediaelement自动旋转
答
你怎么样尝试添加到您的网页;
SupportedOrientations = “PortraitOrLandscape” 方向= “纵向”
就像在这个例子中
<phone:PhoneApplicationPage
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
x:Class="Yourproject.Page1"
mc:Ignorable="d"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="PortraitOrLandscape" Orientation="Portrait"
shell:SystemTray.IsVisible="False" Background="#FF0F0F0F">
直接进入到Windows 10 UWP应用开发。对手机8.1的支持将于2017年7月结束 – magicandre1981