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