using Avalonia; using Avalonia.Controls.Primitives; namespace TheXamlGuy.UI.Avalonia.Controls { public class ProgressRingTemplateSettings : TemplatedControl { public static readonly StyledProperty SweepAngleProperty = AvaloniaProperty.Register(nameof(SweepAngle), 0); public double SweepAngle { get => GetValue(SweepAngleProperty); set => SetValue(SweepAngleProperty, value); } } }