我尝试删除 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>
我在下面附上了一个打印屏幕: