windows phone 8.1 silverlight mediaelement自动旋转

时间:2017-06-27 08:38:40

标签: silverlight windows-phone-8.1

我是windows phone 8.1 silverlight开发的新手。当我将手机垂直转向水平时,我需要自动旋转mediaelement的帮助。 请帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

如何尝试将此添加到您的页面;

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">