Table of Contents

Class ListItemMoveBehavior

Namespace
HeBianGu.General.WpfControlLib
Assembly
HeBianGu.General.WpfControlLib.dll

Represents a behavior that allows moving items in an ItemsControl by dragging them. For this behavior to work, the ItemsControl.ItemsPanel must not be a VirtualizingPanel, and the ItemsControl.ItemsSource must be an ObservableCollection<T>.

public class ListItemMoveBehavior : IDisposable
Inheritance
ListItemMoveBehavior
Implements
Inherited Members
Extension Methods

Fields

AnimationDurationProperty

Identifies the AnimationDuration attached dependency property.

public static readonly DependencyProperty AnimationDurationProperty

Field Value

DependencyProperty

IsElementDraggableProperty

Identifies the IsElementDraggable attached dependency property.

public static readonly DependencyProperty IsElementDraggableProperty

Field Value

DependencyProperty

IsEnabledProperty

Identifies the IsEnabled attached dependency property.

public static readonly DependencyProperty IsEnabledProperty

Field Value

DependencyProperty

ReorderCompletedEvent

Identifies the ReorderCompleted attached event.

public static readonly RoutedEvent ReorderCompletedEvent

Field Value

RoutedEvent

Methods

AddReorderCompletedHandler(FrameworkElement, RoutedPropertyChangedEventHandler<int>)

Adds the reorder completed handler.

public static void AddReorderCompletedHandler(FrameworkElement element, RoutedPropertyChangedEventHandler<int> handler)

Parameters

element FrameworkElement

The element.

handler RoutedPropertyChangedEventHandler<int>

The handler.

Dispose()

Performs event clean-up.

public void Dispose()

GetAnimationDuration(ItemsControl)

Gets the duration of the animation.

public static TimeSpan GetAnimationDuration(ItemsControl itemsControl)

Parameters

itemsControl ItemsControl

The items control.

Returns

TimeSpan

GetIsElementDraggable(UIElement)

Gets a value indicating whether the element can be used for dragging.

public static bool GetIsElementDraggable(UIElement obj)

Parameters

obj UIElement

The object.

Returns

bool

GetIsEnabled(ItemsControl)

Gets a value indicating whether the beavior is enabled.

public static bool GetIsEnabled(ItemsControl obj)

Parameters

obj ItemsControl

The object.

Returns

bool

RemoveReorderCompletedHandler(FrameworkElement, RoutedPropertyChangedEventHandler<int>)

Removes the reorder completed handler.

public static void RemoveReorderCompletedHandler(FrameworkElement element, RoutedPropertyChangedEventHandler<int> handler)

Parameters

element FrameworkElement

The element.

handler RoutedPropertyChangedEventHandler<int>

The handler.

SetAnimationDuration(ItemsControl, TimeSpan)

Sets the duration of the animation.

public static void SetAnimationDuration(ItemsControl itemsControl, TimeSpan value)

Parameters

itemsControl ItemsControl

The items control.

value TimeSpan

The value.

SetIsElementDraggable(UIElement, bool)

Sets a value indicating whether the element can be used for dragging.

public static void SetIsElementDraggable(UIElement obj, bool value)

Parameters

obj UIElement

The object.

value bool

if set to true, enables the behavior.

SetIsEnabled(ItemsControl, bool)

Sets a value indicating whether the beavior is enabled.

public static void SetIsEnabled(ItemsControl obj, bool value)

Parameters

obj ItemsControl

The object.

value bool

if set to true, enables the behavior.