15 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)
13 public partial class ProgressBar : View, IElementConfiguration<ProgressBar>, IProgress 16 public static readonly BindableProperty ProgressColorProperty = BindableProperty.Create(nameof(ProgressColor), typeof(Color), typeof(ProgressBar), null); 19 public static readonly BindableProperty ProgressProperty = BindableProperty.Create(nameof(Progress), typeof(double), typeof(ProgressBar), 0d, coerceValue: (bo, v) => ((double)v).Clamp(0, 1)); 21 readonly Lazy<PlatformConfigurationRegistry<ProgressBar>> _platformConfigurationRegistry; 26 _platformConfigurationRegistry = new Lazy<PlatformConfigurationRegistry<ProgressBar>>(() => new PlatformConfigurationRegistry<ProgressBar>(this)); 54 public IPlatformElementConfiguration<T, ProgressBar> On<T>() where T : IConfigPlatform
Properties\AssemblyInfo.cs (2)
101[assembly: StyleProperty("color", typeof(ProgressBar), nameof(ProgressBar.ProgressColorProperty))]