using Avalonia; using Avalonia.Controls; using System; using System.Collections.Generic; using System.Text; namespace Ursa.Controls { public class Skeleton : ContentControl { public static readonly StyledProperty IsActiveProperty = AvaloniaProperty.Register(nameof(IsActive)); public bool IsActive { get { return GetValue(IsActiveProperty); } set { SetValue(IsActiveProperty, value); } } public static readonly StyledProperty IsLoadingProperty = AvaloniaProperty.Register(nameof(IsLoading)); public bool IsLoading { get => GetValue(IsLoadingProperty); set => SetValue(IsLoadingProperty, value); } } }