私はWPFが初めてです。私の要件は、角丸長方形のスプラッシュ スクリーンを作成することです。私はいくつかの検索を行い、丸い長方形を達成しました。しかし、問題は、それが一部の領域で失敗することです。スクリーンショットを見て、以下のコードを確認してください。
その画像では、黒い境界線が角で壊れていることがわかります
ここに私のxamlがあります
<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>