0

試してみましたが、コード ビハインドで wp7 アプリのページの向きを設定できないようです。無理だとは思いますが、ここで確認してみます。

それはできますか?

ここにない場合は、誰かが助けてくれるかもしれない私の問題です。Landscapeに設定したアプリを作成し、PageOrientationをLandscapeLeftに設定しました。電話が動いているため、明らかにLandscapeRightに回転することがありますが、これも望ましくありません。だから私はこれをやった

protected override void OnOrientationChanged(OrientationChangedEventArgs e)
{
     if(e.Orientation == PageOrientation.LandscapeLeft)
          base.OnOrientationChanged(e); 
}

問題は解決しましたが、友達にアプリを見せたら遊んでくれました。一部のユーザーは、電話のボタンと電話の持ち方を理由に、逆方向 (LandscapeRight) を好みました。

私のアプリのユーザーを満足させるために、LandscapeLeft または LandscapeRight が必要かどうかに基づいて変更できる設定を入れたいと思いました。コードビハインドで方向を変更できないので、どうすればこれを達成できますか?

つまり、アプリは常にLandscapeLeftに設定されており、LandscapeRightが必要な場合は、変換を180 *回転させます。しかし、主な問題は、MessageBox が上下逆に表示されることでした。

4

2 に答える 2

3

コードビハインドでページの向きを設定できます

 this.Orientation = PageOrientation.Landscape;

プロパティhttp://msdn.microsoft.com/en-us/library/microsoft.phone.controls.phoneapplicationpage.orientation(v=vs.92).aspxを参照してください

例: http://www.kunal-chowdhury.com/2011/10/know-about-wp7-page-orientation-and.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+kunal2383+%28Kunal%27s+ブログ%29

ただし、これはLandscapeまたはPortraitの設定のみに限定されています.PortraitUpとPortraitDown、およびLandscapeLeftとLandscapeRightは無視されているようです。


あなたができる最善のことは、電話を横向きにしてから回転変換を使用することです.風景:

    private bool t;
    private void Button_Click(object sender, RoutedEventArgs e)
    {
        SupportedOrientations = SupportedPageOrientation.Landscape;
        Orientation = PageOrientation.Landscape;

        if (t)
        {
            t = false;
            this.RenderTransform = new RotateTransform() {Angle = 180, CenterX = 400, CenterY = 240};
        }
        else
        {
            t = true;
            this.RenderTransform = null;
        }
    }

それはXamlでした:

<phone:PhoneApplicationPage 
    x:Class="PhoneApp1.MainPage"
    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"
    mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="480"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="PortraitOrLandscape"  Orientation="Landscape"
    shell:SystemTray.IsVisible="False">

    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
            <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
            <TextBlock x:Name="PageTitle" Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>

            <Button Click="Button_Click" Content="one"/>
        </StackPanel>

        <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"></Grid>
    </Grid>

</phone:PhoneApplicationPage>
于 2012-05-25T18:28:50.640 に答える
0

SupportedOrientations プロパティを Landscape に設定するだけです。そうすれば、ユーザーがLandscapeLeftまたはLandscapeRightのどちらを保持していても機能します。 プログラムでどちらか一方を設定する方法はありません

于 2012-05-25T18:35:53.287 に答える