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.
 
 
 

35 lines
1.1 KiB

// <auto-generated />
namespace TestNs
{
partial class MyControl
{
#nullable enable annotations
/// <summary>
/// Defines the <see cref="First"/> property.
/// </summary>
public static readonly global::Avalonia.StyledProperty<int> FirstProperty =
global::Avalonia.AvaloniaProperty.Register<global::TestNs.MyControl, int>(nameof(First), coerce: CoerceValue);
public partial int First
{
get => GetValue(FirstProperty);
set => SetValue(FirstProperty, value);
}
#nullable restore annotations
#nullable enable annotations
/// <summary>
/// Defines the <see cref="Second"/> property.
/// </summary>
public static readonly global::Avalonia.StyledProperty<int> SecondProperty =
global::Avalonia.AvaloniaProperty.Register<global::TestNs.MyControl, int>(nameof(Second), coerce: CoerceValue);
public partial int Second
{
get => GetValue(SecondProperty);
set => SetValue(SecondProperty, value);
}
#nullable restore annotations
}
}