如何绘制半圆角矩形?

时间:2018-04-23 13:07:18

标签: c# wpf xaml rounded-corners

我想要一个像图像中的半圆角矩形,但只有2个边缘。

A Half-Rounded Rectangle

我尝试使用RadiusX="" RadiusY="",但是四舍五入。

1 个答案:

答案 0 :(得分:4)

如果您使用Border,则可以指定以逗号分隔的四个不同半径(topLefttopRightbottomRightbottomLeft),例如:

<Border BorderBrush="Blue" BorderThickness="3" CornerRadius="5,5,0,0" Margin="10">
    <TextBlock>....</TextBlock>
</Border>