Add BorderRectangle::border_top|bottom_left|right_radius

This commit is contained in:
J-P Nurmi 2023-09-13 15:35:55 +02:00 committed by Olivier Goffart
parent 9644f62f00
commit 51457025bf
5 changed files with 52 additions and 1 deletions

View file

@ -565,6 +565,7 @@ When not part of a layout, its width and height default to 100% of the parent el
- **`background`** (_in_ _brush_): The background brush of this `Rectangle`, typically a color. (default value: `transparent`)
- **`border-color`** (_in_ _brush_): The color of the border. (default value: `transparent`)
- **`border-radius`** (_in_ _length_): The size of the radius. (default value: 0)
- **`border-top-left-radius`**, **`border-top-right-radius`**, **`border-bottom-left-radius`** and **`border-bottom-right-radius`** (_in_ _length_): Set these properties to override the radius for specific corners.
- **`border-width`** (_in_ _length_): The width of the border. (default value: 0)
- **`clip`** (_in_ _bool_): By default, when an element is bigger or outside another element, it's still shown. When this property is set to `true`, the children of this `Rectangle` are clipped to the border of the rectangle. (default value: `false`)