0

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

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

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

在此处输入图像描述

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>

4

1 回答 1

4

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

于 2013-09-13T13:55:21.957 回答