Progress ring work sort of completed
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user