Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
danwalmsley committed Nov 19, 2024
1 parent 3688296 commit fee71e2
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,21 @@

namespace Avalonia.Xaml.Interactions.Custom;

/// <summary>
///
/// </summary>
public class ItemNudgeDropBehavior : StyledElementBehavior<ItemsControl>
{
/// <summary>
///
/// </summary>
public static readonly StyledProperty<Orientation> OrientationProperty =
AvaloniaProperty.Register<ItemNudgeDropBehavior, Orientation>(nameof(Orientation),
defaultValue: Orientation.Vertical);

/// <summary>
///
/// </summary>
public Orientation Orientation
{
get => GetValue(OrientationProperty);
Expand Down

0 comments on commit fee71e2

Please sign in to comment.