我是 WPF 的新手。我的要求是制作一个圆角矩形的闪屏。我做了一些搜索并实现了圆角矩形。但问题是它在某些方面失败了。请查看屏幕截图并检查下面的代码。
在该图像中,您可以看到黑色边框在角落处破裂
这是我的xml
<Window x:Class="TimeLogger.StartWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Width="470" Height="270" ShowInTaskbar="False" WindowStartupLocation="CenterScreen"
ResizeMode="NoResize" WindowStyle="None" AllowsTransparency="True" Background="Transparent" >
<Border BorderBrush="#FF000000" BorderThickness="2,2,2,2" CornerRadius="8,8,8,8">
<Grid Background="#012a7a" >
<Label Margin="-5,-7,5,7">
<TextBlock Foreground="Black" FontFamily="Segoe UI" FontSize="25" FontStretch="UltraExpanded" Height="71" Width="177">
TimeLogger
</TextBlock>
</Label>
</Grid>
</Border>
</Window>