Browse Source

fix doc comments in ScrollGestureRecognizer

pull/18617/head
Emmanuel Hansen 8 months ago
committed by GitHub
parent
commit
bd214514b8
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      src/Avalonia.Base/Input/GestureRecognizers/ScrollGestureRecognizer.cs

6
src/Avalonia.Base/Input/GestureRecognizers/ScrollGestureRecognizer.cs

@ -67,7 +67,7 @@ namespace Avalonia.Input.GestureRecognizers
unsetValue: s_defaultScrollStartDistance);
/// <summary>
/// Defines the <see cref="ScrollStartDistance"/> property.
/// Defines the <see cref="Offset"/> property.
/// </summary>
public static readonly DirectProperty<ScrollGestureRecognizer, Vector?> OffsetProperty =
AvaloniaProperty.RegisterDirect<ScrollGestureRecognizer, Vector?>(nameof(Offset),
@ -75,7 +75,7 @@ namespace Avalonia.Input.GestureRecognizers
unsetValue: null);
/// <summary>
/// Defines the <see cref="ScrollStartDistance"/> property.
/// Defines the <see cref="Extent"/> property.
/// </summary>
public static readonly DirectProperty<ScrollGestureRecognizer, Size?> ExtentProperty =
AvaloniaProperty.RegisterDirect<ScrollGestureRecognizer, Size?>(nameof(Extent),
@ -83,7 +83,7 @@ namespace Avalonia.Input.GestureRecognizers
unsetValue: null);
/// <summary>
/// Defines the <see cref="ScrollStartDistance"/> property.
/// Defines the <see cref="Viewport"/> property.
/// </summary>
public static readonly DirectProperty<ScrollGestureRecognizer, Size?> ViewportProperty =
AvaloniaProperty.RegisterDirect<ScrollGestureRecognizer, Size?>(nameof(Viewport),

Loading…
Cancel
Save