8 references to IndicatorShape
Microsoft.Maui.Controls (6)
IndicatorView\IndicatorStackLayout.cs (1)
146 CornerRadius = _indicatorView.IndicatorsShape == IndicatorShape.Circle
IndicatorView\IndicatorView.cs (5)
18 public static readonly BindableProperty IndicatorsShapeProperty = BindableProperty.Create(nameof(IndicatorsShape), typeof(IndicatorShape), typeof(IndicatorView), Controls.IndicatorShape.Circle); 57 public IndicatorShape IndicatorsShape 59 get { return (IndicatorShape)GetValue(IndicatorsShapeProperty); } 188 IShape IIndicatorView.IndicatorsShape => IndicatorsShape == IndicatorShape.Square ? new Shapes.Rectangle() : new Shapes.Ellipse();
Microsoft.Maui.Controls.Compatibility (2)
iOS\Renderers\IndicatorViewRenderer.cs (2)
110 IsSquare = Element.IndicatorsShape == IndicatorShape.Square, 148 UIPager.IsSquare = Element.IndicatorsShape == IndicatorShape.Square;