windows - WP 7.1 应用程序在 WP8 模拟器中运行时显示黑色标题

标签 windows windows-phone-7 windows-phone-8 windows-phone-7.1 windows-phone-8-emulator

我在 WP7.1 中开发了一个 Windows Phone 应用程序,而在 WP8.0 中运行时它显示了一个粗黑的顶部边框, 这是我的代码

<phone:PhoneApplicationPage 
    x:Class="MapTestApp7.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="480" d:DesignHeight="768"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    shell:SystemTray.IsVisible="False">

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

        <!--TitlePanel contains the name of the application and page title-->
        <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}"/>
        </StackPanel>

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

</phone:PhoneApplicationPage>

这里是输出图片的链接: https://docs.google.com/file/d/0By0Y-Dca1cKjWUJ3emtPZHVDbVk/edit?usp=sharing

请帮我移除顶部边框。

最佳答案

不幸的是,对于在 WP8 720p 设备上运行的 WP7,无法移除该边框。 如果您不想要边框,则需要将您的 WP7 项目转换为 WP8。

解释:

WP7 应用程序被限制在一个 480*800 的容器中,当在 768*1280 或 720*1280 Windows Phone 8 设备上运行时,这个容器会被放大。

在 768*1280 设备 (WXGA) 上,比例为 1.6x => 无边框。

在 720*1280 设备 (720p) 上,缩放比例为 1.5 倍,顶部有 80 像素的黑色边框(缩放后为 53 像素)。

关于windows - WP 7.1 应用程序在 WP8 模拟器中运行时显示黑色标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18528001/

相关文章:

c# - 使用 Environment.OSVersion 确定操作系统

windows-phone-7 - jQuery Mobile changePage() 在 Windows Phone 中不起作用

c# - Windows Phone 8 应用程序的翻页过渡

c# - 将 Windows Phone 麦克风转换为 wma 或 mp3

c# - 将 GeocodeQuery 与加拿大邮政编码结合使用

c# - 如何使用 Json.Net 反序列化枚举数组?

winapi - 使 MessageBox 保持在其他窗口之上

当另一个进程打开文件时,Python open() 在 Windows 上失败

c++ - 如何在运行时将编辑样式更改为 ES_NUMBER?

c# - UnhandledException 在 Windows Phone 上的所有情况下都能正常工作吗?