feat: initialize icon button.

This commit is contained in:
rabbitism
2024-01-06 16:02:14 +08:00
parent 5ac95a9965
commit 95682fb450
9 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using Avalonia;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
namespace Ursa.Controls;
public class IconButton: Button
{
public static readonly StyledProperty<object?> IconProperty = AvaloniaProperty.Register<IconButton, object?>(
nameof(Icon));
public object? Icon
{
get => GetValue(IconProperty);
set => SetValue(IconProperty, value);
}
public static readonly StyledProperty<IDataTemplate?> IconTemplateProperty = AvaloniaProperty.Register<IconButton, IDataTemplate?>(
nameof(IconTemplate));
public IDataTemplate? IconTemplate
{
get => GetValue(IconTemplateProperty);
set => SetValue(IconTemplateProperty, value);
}
public static readonly StyledProperty<bool> IsLoadingProperty = AvaloniaProperty.Register<IconButton, bool>(
nameof(IsLoading));
public bool IsLoading
{
get => GetValue(IsLoadingProperty);
set => SetValue(IsLoadingProperty, value);
}
}