Page 1 of 1

[Solved] Rectangle Radius

Posted: Wed Oct 25, 2017 2:57 am
by Matti111
Hi,
how can I set the radius angle of a Rectangle?

Thanks
Mattia

Re: Rectangle Radius

Posted: Wed Oct 25, 2017 6:50 am
by JS-Support @Userware
Hi,

At the moment, the rectangle RadiusX and RadiusY properties are not yet supported.

However, you can use a <Border> control instead, which can have round corners. Here is an example:

Code: Select all

<Border CornerRadius="3,5,2,5" Background="Green" BorderBrush="Blue" BorderThickness="2"/>


Regards,
JS-Support

Re: Rectangle Radius

Posted: Wed Oct 25, 2017 1:47 pm
by Matti111
Thanks for solution!