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

// <auto-generated />
namespace TestNs
{
partial class Host
{
#nullable enable annotations
/// <summary>
/// Defines the <c>IsHosted</c> attached property.
/// </summary>
internal static readonly global::Avalonia.AttachedProperty<bool> IsHostedProperty =
global::Avalonia.AvaloniaProperty.RegisterAttached<global::TestNs.Host, global::Avalonia.Visual, bool>("IsHosted");
internal static partial bool GetIsHosted(global::Avalonia.Visual element)
=> element.GetValue(IsHostedProperty);
/// <summary>
/// Sets the value of the <see cref="IsHostedProperty"/> attached property on the specified object.
/// </summary>
internal static void SetIsHosted(global::Avalonia.Visual element, bool value)
=> element.SetValue(IsHostedProperty, value);
#nullable restore annotations
}
}