0
我是新手,在windows phone 8.1 silverlight開發中。當我將手機垂直轉向水平時,我需要自動旋轉媒體元素的幫助。 請幫我解決這個問題。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