SL 5 アプリをブラウザーで実行するように設定しています。
OOB 設定:
<WindowSettings Title="Thing" Height="497" Width="462" WindowStyle="BorderlessRoundCornersWindow" />
Blend は、UserControl の幅と高さを 463, 500 と報告します
。アプリがブラウザー外で実行されると、左端と上端に沿って 1 ピクセルの白い線が表示されます。
一部の xaml:
<Grid x:Name="LayoutRoot" Height="500" >
<Border BorderThickness="1" CornerRadius="6" Padding="2" Background="#FFF17A35">
<Grid Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,0,4,6">
<HyperlinkButton
<!--blah blah -->
</HyperlinkButton>
<HyperlinkButton x:Name="hyperlinkCloseButton"
<!--blah blah -->
</HyperlinkButton>
</StackPanel>
<StackPanel Orientation="Vertical" Grid.Row="2" HorizontalAlignment="Center" Margin="0,2,0,0">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
<!--blah blah -->
</StackPanel>
</StackPanel>
<ScrollViewer Width="400" Grid.Row="4" VerticalAlignment="Center" MaxHeight="76">
<TextBlock x:Name="DbgOutput"
Text="{Binding DbgMsgTxt}"
Width="396" TextWrapping="Wrap"/>
</ScrollViewer>
</Grid>
</Border>
</Grid>
白さがどこから来ているかについてのヒントはありますか?