-
-
Notifications
You must be signed in to change notification settings - Fork 230
Nodify_Events_ItemsMovedEventArgs
Namespace: Nodify.Events
Assembly: Nodify
Inheritance: Object → EventArgs → RoutedEventArgs → ItemsMovedEventArgs
References: ItemContainer, ItemsMovedEventHandler, NodifyEditor
Provides data for the NodifyEditor.ItemsMovedEvent routed event.
public class ItemsMovedEventArgs : RoutedEventArgs
Initializes a new instance of the ItemsMovedEventArgs class with the specified moved items and offset.
public ItemsMovedEventArgs(IReadOnlyCollection<Object> items, Vector offset);
Parameters
items
IReadOnlyCollection<Object>: The collection of items that were moved.
offset
Vector: The vector representing the distance the items were moved.
Gets a collection of FrameworkElement.DataContexts of the ItemContainers associated with this event.
public IReadOnlyCollection<Object> Items { get; set; }
Property Value
Gets or sets the vector representing the distance the items were moved.
public Vector Offset { get; set; }
Property Value
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget);
Parameters
genericHandler
Delegate
genericTarget
Object