Files
TheXamlGuy/UI/Avalonia.Controls/ProgressRing/ProgressRingTemplateSettings.cs
2022-11-03 13:42:36 +00:00

18 lines
513 B
C#

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