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
875 B

// <auto-generated />
namespace TestNs
{
partial class MyPanel
{
#nullable enable annotations
/// <summary>
/// Defines the <c>Row</c> attached property.
/// </summary>
public static readonly global::Avalonia.AttachedProperty<int> RowProperty =
global::TestNs.BasePanel.RowProperty.AddOwner<global::TestNs.MyPanel>(new global::Avalonia.StyledPropertyMetadata<int>(defaultValue: 2));
public static partial int GetRow(global::Avalonia.Visual element)
=> element.GetValue(RowProperty);
/// <summary>
/// Sets the value of the <see cref="RowProperty"/> attached property on the specified object.
/// </summary>
public static void SetRow(global::Avalonia.Visual element, int value)
=> element.SetValue(RowProperty, value);
#nullable restore annotations
}
}