Inverted-angle radius in WPF (something like a negative radius)

I am trying to create a border with a negative angular radius, for example:

enter image description here

I want a radius inside. Is this possible when building functions, or do I need to draw it using a path?

+6
source share
1 answer

You can use Border in Border

 <Border Background="Black"> <Border Margin="10" Background="White" CornerRadius="20"> <!-- ... --> </Border> </Border> 

enter image description here

0
source

Source: https://habr.com/ru/post/898631/


All Articles