//
namespace TestNs
{
partial class ToolTip
{
#nullable enable annotations
///
/// Defines the Tip attached property.
///
public static readonly global::Avalonia.AttachedProperty TipProperty =
global::Avalonia.AvaloniaProperty.RegisterAttached("Tip");
public static partial string? GetTip(global::Avalonia.Visual element)
=> element.GetValue(TipProperty);
///
/// Sets the value of the attached property on the specified object.
///
public static void SetTip(global::Avalonia.Visual element, string? value)
=> element.SetValue(TipProperty, value);
#nullable restore annotations
}
}