csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
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.
41 lines
1.7 KiB
41 lines
1.7 KiB
// <auto-generated />
|
|
|
|
namespace TestNs
|
|
{
|
|
partial class Grid
|
|
{
|
|
#nullable enable annotations
|
|
/// <summary>
|
|
/// Defines the <c>RowSpan</c> attached property.
|
|
/// </summary>
|
|
public static readonly global::Avalonia.AttachedProperty<int> RowSpanProperty =
|
|
global::Avalonia.AvaloniaProperty.RegisterAttached<global::TestNs.Grid, global::Avalonia.Visual, int>("RowSpan", defaultValue: 1);
|
|
|
|
public static partial int GetRowSpan(global::Avalonia.Visual element)
|
|
=> element.GetValue(RowSpanProperty);
|
|
|
|
/// <summary>
|
|
/// Sets the value of the <see cref="RowSpanProperty"/> attached property on the specified object.
|
|
/// </summary>
|
|
public static void SetRowSpan(global::Avalonia.Visual element, int value)
|
|
=> element.SetValue(RowSpanProperty, value);
|
|
#nullable restore annotations
|
|
|
|
#nullable enable annotations
|
|
/// <summary>
|
|
/// Defines the <c>FontSize</c> attached property.
|
|
/// </summary>
|
|
public static readonly global::Avalonia.AttachedProperty<double> FontSizeProperty =
|
|
global::Avalonia.AvaloniaProperty.RegisterAttached<global::TestNs.Grid, global::Avalonia.Visual, double>("FontSize", inherits: true);
|
|
|
|
public static partial double GetFontSize(global::Avalonia.Visual element)
|
|
=> element.GetValue(FontSizeProperty);
|
|
|
|
/// <summary>
|
|
/// Sets the value of the <see cref="FontSizeProperty"/> attached property on the specified object.
|
|
/// </summary>
|
|
public static void SetFontSize(global::Avalonia.Visual element, double value)
|
|
=> element.SetValue(FontSizeProperty, value);
|
|
#nullable restore annotations
|
|
}
|
|
}
|
|
|