4 instantiations of RoundRectangle
Microsoft.Maui.Controls (4)
IndicatorView\IndicatorStackLayout.cs (1)
144
StrokeShape = new
RoundRectangle
()
RadioButton\RadioButton.cs (1)
695
return new
RoundRectangle
Shapes\StrokeShapeTypeConverter.cs (2)
124
return new
RoundRectangle
{ CornerRadius = cornerRadius };
130
return new
RoundRectangle
{ CornerRadius = new CornerRadius(radius) };
6 references to RoundRectangle
Microsoft.Maui.Controls (6)
Handlers\Shapes\RoundRectangle\RoundRectangleHandler.cs (3)
8
public static new IPropertyMapper<
RoundRectangle
, IShapeViewHandler> Mapper = new PropertyMapper<
RoundRectangle
, IShapeViewHandler>(ShapeViewHandler.Mapper)
10
[nameof(
RoundRectangle
.CornerRadius)] = MapCornerRadius
Handlers\Shapes\RoundRectangle\RoundRectangleHandler.Standard.cs (1)
8
public static void MapCornerRadius(IShapeViewHandler handler,
RoundRectangle
roundRectangle) { }
Hosting\AppHostBuilderExtensions.cs (1)
102
handlersCollection.AddHandler<Shapes.
RoundRectangle
, RoundRectangleHandler>();
Shapes\RoundRectangle.cs (1)
17
BindableProperty.Create(nameof(CornerRadius), typeof(CornerRadius), typeof(
RoundRectangle
), new CornerRadius());