Windows Phone OS 7 用のアプリを開発していました。エミュレーター VGA (解像度 480*800) でアプリを実行していましたが、完全に問題なく動作しました。しかし、エミュレーター 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>