6 references to IndicatorShape
Microsoft.Maui.Controls (6)
IndicatorView\IndicatorStackLayout.cs (1)
146 CornerRadius = _indicatorView.IndicatorsShape == IndicatorShape.Circle
IndicatorView\IndicatorView.cs (5)
21 public static readonly BindableProperty IndicatorsShapeProperty = BindableProperty.Create(nameof(IndicatorsShape), typeof(IndicatorShape), typeof(IndicatorView), Controls.IndicatorShape.Circle); 60 public IndicatorShape IndicatorsShape 62 get { return (IndicatorShape)GetValue(IndicatorsShapeProperty); } 191 IShape IIndicatorView.IndicatorsShape => IndicatorsShape == IndicatorShape.Square ? new Shapes.Rectangle() : new Shapes.Ellipse();