1 write to IndicatorTemplate
Microsoft.Maui.Controls (1)
IndicatorView\IndicatorStackLayout.cs (1)
137 var indicatorTemplate = _indicatorView.IndicatorTemplate ??= new DataTemplate(() => new Border
4 references to IndicatorTemplate
Microsoft.Maui.Controls (4)
IndicatorView\IndicatorView.cs (4)
34 /// <summary>Bindable property for <see cref="IndicatorTemplate"/>.</summary> 35 public static readonly BindableProperty IndicatorTemplateProperty = BindableProperty.Create(nameof(IndicatorTemplate), typeof(DataTemplate), typeof(IndicatorView), default(DataTemplate), propertyChanging: (bindable, oldValue, newValue) 139 if (IndicatorTemplate == null) 192 Maui.ILayout ITemplatedIndicatorView.IndicatorsLayoutOverride => (IndicatorTemplate != null) ? IndicatorLayout as Maui.ILayout : null;