Browse Source

[Grid] Fix ColumnSpacing property name (#18603)

pull/18612/head
Evgenii Karachevtsev 10 months ago
committed by GitHub
parent
commit
d5d7127ce0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      src/Avalonia.Controls/Grid.cs

4
src/Avalonia.Controls/Grid.cs

@ -1,4 +1,4 @@
// This source file is adapted from the Windows Presentation Foundation project.
// This source file is adapted from the Windows Presentation Foundation project.
// (https://github.com/dotnet/wpf/)
//
// Licensed to The Avalonia Project under MIT License, courtesy of The .NET Foundation.
@ -2730,7 +2730,7 @@ namespace Avalonia.Controls
/// Defines the <see cref="ColumnSpacing"/> property.
/// </summary>
public static readonly StyledProperty<double> ColumnSpacingProperty =
AvaloniaProperty.Register<Grid, double>(nameof(ColumnSpacingProperty));
AvaloniaProperty.Register<Grid, double>(nameof(ColumnSpacing));
/// <summary>
/// Column property. This is an attached property.

Loading…
Cancel
Save