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

// <auto-generated />
namespace TestNs
{
partial class ScrollHelper
{
#nullable enable annotations
/// <summary>
/// Defines the <c>IsScrollTarget</c> attached property.
/// </summary>
public static readonly global::Avalonia.AttachedProperty<bool> IsScrollTargetProperty =
global::Avalonia.AvaloniaProperty.RegisterAttached<global::Avalonia.Visual, bool>("IsScrollTarget", typeof(global::TestNs.ScrollHelper), defaultValue: false);
public static partial bool GetIsScrollTarget(global::Avalonia.Visual element)
=> element.GetValue(IsScrollTargetProperty);
/// <summary>
/// Sets the value of the <see cref="IsScrollTargetProperty"/> attached property on the specified object.
/// </summary>
public static void SetIsScrollTarget(global::Avalonia.Visual element, bool value)
=> element.SetValue(IsScrollTargetProperty, value);
#nullable restore annotations
}
}