我在WP7.1中开发了一个Windows手机应用程序,在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
请帮我删除顶部边框。
答案 0 :(得分:2)
不幸的是,没有办法删除在WP8 720p设备上运行的WP7的边框。 如果您不想要边框,则需要将WP7项目转换为WP8。
说明:
WP7应用程序受限于480 * 800容器,该容器在768 * 1280或720 * 1280 Windows Phone 8设备上运行时会按比例放大。
在768 * 1280设备(WXGA)上,比例为1.6x =&gt;没有边界。
在720 * 1280设备(720p)上,比例为1.5x,顶部为80px黑色边框(缩放后为53px)。
答案 1 :(得分:-1)
将d:DesignHeight =“768”更改为d:DesignHeight =“800”
这应该可以解决问题。
BR,