You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
569 B
23 lines
569 B
1 year ago
|
using System.Diagnostics.CodeAnalysis;
|
||
|
using Avalonia;
|
||
|
using Avalonia.Controls.Primitives;
|
||
1 year ago
|
using StabilityMatrix.Core.Attributes;
|
||
1 year ago
|
|
||
|
namespace StabilityMatrix.Avalonia.Controls;
|
||
|
|
||
|
[SuppressMessage("ReSharper", "MemberCanBePrivate.Global")]
|
||
1 year ago
|
[Transient]
|
||
1 year ago
|
public class StackCard : TemplatedControl
|
||
|
{
|
||
12 months ago
|
public static readonly StyledProperty<int> SpacingProperty = AvaloniaProperty.Register<StackCard, int>(
|
||
|
"Spacing",
|
||
|
4
|
||
|
);
|
||
1 year ago
|
|
||
|
public int Spacing
|
||
|
{
|
||
|
get => GetValue(SpacingProperty);
|
||
|
set => SetValue(SpacingProperty, value);
|
||
|
}
|
||
|
}
|