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

// <auto-generated />
namespace TestNs
{
partial class MyPanel
{
#nullable disable annotations
/// <summary>
/// Defines the <c>Label</c> attached property.
/// </summary>
public static readonly global::Avalonia.AttachedProperty<string> LabelProperty =
global::Avalonia.AvaloniaProperty.RegisterAttached<global::TestNs.MyPanel, global::Avalonia.Visual, string>("Label");
public static partial string GetLabel(global::Avalonia.Visual element)
=> element.GetValue(LabelProperty);
/// <summary>
/// Sets the value of the <see cref="LabelProperty"/> attached property on the specified object.
/// </summary>
public static void SetLabel(global::Avalonia.Visual element, string value)
=> element.SetValue(LabelProperty, value);
#nullable restore annotations
}
}