Browse Source
fix doc comments in ScrollGestureRecognizer
pull/18617/head
Emmanuel Hansen
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
3 deletions
-
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), |
|
|
|
|