Progress ring work sort of completed

This commit is contained in:
Daniel Clark
2022-11-03 13:42:36 +00:00
parent c601957dd9
commit 73a1fd5f74
4 changed files with 56 additions and 14 deletions
@@ -0,0 +1,17 @@
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);
}
}
}