25 references to UIPager
Microsoft.Maui.Controls.Compatibility (25)
iOS\Renderers\IndicatorViewRenderer.cs (25)
42
if (
UIPager
!= null)
46
UIPager
.AllowsContinuousInteraction = false;
47
UIPager
.BackgroundStyle = UIPageControlBackgroundStyle.Minimal;
67
if (
UIPager
!= null)
69
UIPager
.ValueChanged -= UIPagerValueChanged;
103
if (
UIPager
!= null)
105
UIPager
.ValueChanged -= UIPagerValueChanged;
148
UIPager
.IsSquare = Element.IndicatorsShape == IndicatorShape.Square;
149
AddSubview(
UIPager
);
150
UIPager
.LayoutSubviews();
155
UIPager
.IndicatorSize = Element.IndicatorSize;
156
UIPager
.LayoutSubviews();
174
if (_updatingPosition ||
UIPager
== null)
177
Element.Position = (int)
UIPager
.CurrentPage;
182
if (
UIPager
== null)
189
UIPager
.CurrentPage = index;
190
UIPager
.LayoutSubviews();
196
if (
UIPager
== null)
199
UIPager
.Pages = GetMaximumVisible();
206
if (
UIPager
== null)
209
UIPager
.HidesForSinglePage = Element.HideSingle;
214
if (
UIPager
== null)
218
UIPager
.PageIndicatorTintColor = color?.ToPlatform() ?? _defaultPagesIndicatorTintColor;
223
if (
UIPager
== null)
227
UIPager
.CurrentPageIndicatorTintColor = color?.ToPlatform() ?? _defaultCurrentPagesIndicatorTintColor;