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

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