From fee71e271cac6d10459d1f014d6e4f5638708be7 Mon Sep 17 00:00:00 2001 From: Dan Walmsley Date: Tue, 19 Nov 2024 14:35:58 +0000 Subject: [PATCH] comments --- .../ItemsControl/ItemNudgeDropBehavior.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Avalonia.Xaml.Interactions.Custom/ItemsControl/ItemNudgeDropBehavior.cs b/src/Avalonia.Xaml.Interactions.Custom/ItemsControl/ItemNudgeDropBehavior.cs index 19bf5f35..9c5b690e 100644 --- a/src/Avalonia.Xaml.Interactions.Custom/ItemsControl/ItemNudgeDropBehavior.cs +++ b/src/Avalonia.Xaml.Interactions.Custom/ItemsControl/ItemNudgeDropBehavior.cs @@ -7,12 +7,21 @@ namespace Avalonia.Xaml.Interactions.Custom; +/// +/// +/// public class ItemNudgeDropBehavior : StyledElementBehavior { + /// + /// + /// public static readonly StyledProperty OrientationProperty = AvaloniaProperty.Register(nameof(Orientation), defaultValue: Orientation.Vertical); + /// + /// + /// public Orientation Orientation { get => GetValue(OrientationProperty);