WPF ウィンドウの境界線を削除しようとしています。Window XP では正常に動作しました。Windows 7 では、タイトル バーは消えますが (これで問題ありません)、ウィンドウの境界線は消えません。これが問題です。
質問: 境界線を削除するには何を変更する必要がありますか?
これは XAML コードです。
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525" WindowStyle="None" >
<Grid>
<TextBlock Height="261" HorizontalAlignment="Left" Margin="55,29,0,0" Name="textBlock1" Text="Some text" VerticalAlignment="Top" Width="419" FontSize="36" />
</Grid>
</Window>
以下に印刷画面を添付しました。