New to Telerik UI for WPFStart a free 30-day trial

Represents ItemsChanged event args.

Definition

Namespace:Telerik.Windows.Controls.Diagrams

Assembly:Telerik.Windows.Controls.Diagrams.dll

Syntax:

C#
public class DiagramItemsChangedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsDiagramItemsChangedEventArgs

Constructors

Initializes a new instance of the DiagramItemsChangedEventArgs class.

C#
public DiagramItemsChangedEventArgs(RoutedEvent routedEvent, IEnumerable newItems = null, IEnumerable oldItems = null, NotifyCollectionChangedAction action = NotifyCollectionChangedAction.Reset)
Parameters:routedEventRoutedEvent

The routed event.

newItemsIEnumerable

The new items.

oldItemsIEnumerable

The old items.

actionNotifyCollectionChangedAction

The action.

Properties

Gets the action.

C#
public NotifyCollectionChangedAction Action { get; }

The new items.

C#
public IEnumerable<object> NewItems { get; }

The old items.

C#
public IEnumerable<object> OldItems { get; }