Windows手机顶部的自动黑暗空间?

时间:2013-09-13 13:39:43

标签: windows-phone-7 windows-phone windows-phone-7.1

我正在为Windows Phone OS 7开发一个应用程序。我在Emulator VGA(分辨率为480 * 800)中运行我的应用程序,没有问题可以完美运行。但是,如果我在模拟器720P或VXGA(分辨率为768 * 1280)下运行我的应用程序,顶部会自动出现深黑色空间。

我不知道它是什么,也不知道怎么摆脱它。这是两个模拟器中我的应用程序的屏幕截图。我在代码中没有做任何事情。刚刚创建了新的空白页面。刚刚更改了网格背景颜色以区分。就这样。所以,问题不在我身边。谁知道实际上是什么问题?

两种分辨率的屏幕截图。左:VXGA和右:VGA

enter image description here

XAML代码:

<phone:PhoneApplicationPage
x:Class="AppName.Page1"
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"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d"
shell:SystemTray.IsVisible="True">

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot">
    <Grid.Background>
        <SolidColorBrush Color="Orange"></SolidColorBrush>
    </Grid.Background>
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>

    <!--TitlePanel contains the name of the application and page title-->
    <StackPanel Grid.Row="0" Margin="12,17,0,28">
        <TextBlock Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
        <TextBlock Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
    </StackPanel>

    <!--ContentPanel - place additional content here-->
    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">

    </Grid>
</Grid>

1 个答案:

答案 0 :(得分:4)

这是设计的。在具有不同分辨率的WP8设备上执行WP7应用程序时,您的应用程序会自动缩放,从而导致您看到的暗区。如果你想摆脱这个空间,你需要专门为WP8编译你的应用程序。