A cross-platform UI framework for .NET
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.
 
 
 

24 lines
923 B

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