// namespace TestNs { partial class Grid { #nullable enable annotations /// /// Defines the Order attached property. /// public static readonly global::Avalonia.AttachedProperty OrderProperty = global::Avalonia.AvaloniaProperty.RegisterAttached("Order", defaultValue: 0, validate: ValidateOrder, coerce: CoerceOrder); public static partial int GetOrder(global::Avalonia.Visual element) => element.GetValue(OrderProperty); /// /// Sets the value of the attached property on the specified object. /// public static void SetOrder(global::Avalonia.Visual element, int value) => element.SetValue(OrderProperty, value); #nullable restore annotations } }