14 lines
330 B
C#
14 lines
330 B
C#
using Avalonia.Controls;
|
|
|
|
namespace Toolkit.UI.Controls.Avalonia;
|
|
|
|
public class SpacingColumnDefinition(double width) :
|
|
ColumnDefinition(width, GridUnitType.Pixel),
|
|
ISpacingDefinition
|
|
{
|
|
public double Spacing
|
|
{
|
|
get => Width.Value;
|
|
set => Width = new GridLength(value, GridUnitType.Pixel);
|
|
}
|
|
} |