19 references to ProgressBar
Microsoft.Maui.Controls (15)
Hosting\AppHostBuilderExtensions.cs (1)
79 handlersCollection.AddHandler<ProgressBar, ProgressBarHandler>();
PlatformConfiguration\TizenSpecific\ProgressBar.cs (5)
5 using FormsElement = Maui.Controls.ProgressBar; 13 typeof(FormsElement), false); 32 public static bool GetPulsingStatus(this IPlatformElementConfiguration<Tizen, FormsElement> config) 38 public static IPlatformElementConfiguration<Tizen, FormsElement> SetPulsingStatus(this IPlatformElementConfiguration<Tizen, FormsElement> config, bool isPulsing)
ProgressBar\ProgressBar.cs (7)
11 public partial class ProgressBar : View, IElementConfiguration<ProgressBar>, IProgress 14 public static readonly BindableProperty ProgressColorProperty = BindableProperty.Create(nameof(ProgressColor), typeof(Color), typeof(ProgressBar), null); 17 public static readonly BindableProperty ProgressProperty = BindableProperty.Create(nameof(Progress), typeof(double), typeof(ProgressBar), 0d, coerceValue: (bo, v) => ((double)v).Clamp(0, 1)); 19 readonly Lazy<PlatformConfigurationRegistry<ProgressBar>> _platformConfigurationRegistry; 24 _platformConfigurationRegistry = new Lazy<PlatformConfigurationRegistry<ProgressBar>>(() => new PlatformConfigurationRegistry<ProgressBar>(this)); 52 public IPlatformElementConfiguration<T, ProgressBar> On<T>() where T : IConfigPlatform
Properties\AssemblyInfo.cs (2)
98[assembly: StyleProperty("color", typeof(ProgressBar), nameof(ProgressBar.ProgressColorProperty))]
Microsoft.Maui.Controls.Compatibility (4)
iOS\Renderers\ProgressBarRenderer.cs (4)
11 public class ProgressBarRenderer : ViewRenderer<ProgressBar, UIProgressView> 28 protected override void OnElementChanged(ElementChangedEventArgs<ProgressBar> e) 46 if (e.PropertyName == ProgressBar.ProgressColorProperty.PropertyName) 48 else if (e.PropertyName == ProgressBar.ProgressProperty.PropertyName)