Class HistoryChangedEventArgs
Initializes a new instance of the SelectionChangeEventArgs class.
Inherited Members
Namespace: Telerik.Windows.Controls.ColorEditor
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public class HistoryChangedEventArgs : RadRoutedEventArgs
Constructors
HistoryChangedEventArgs(IList<Color>, IList<Color>, RoutedEvent, Object)
Initializes a new instance of the HistoryChangedEventArgs class.
Declaration
public HistoryChangedEventArgs(IList<Color> removedItems, IList<Color> addedItems, RoutedEvent routedEvent, object source)
Parameters
System.Collections.Generic.IList<System.Windows.Media.Color>
removedItems
The removed items. |
System.Collections.Generic.IList<System.Windows.Media.Color>
addedItems
The added items. |
RoutedEvent
routedEvent
The routed event. |
System.Object
source
The source. |
Properties
AddedItems
Gets a list that contains the colors that were added to RadColorEditor's history.
Declaration
public ReadOnlyCollection<Color> AddedItems { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Media.Color>
|
RemovedItems
Gets a list that contains the colors that were removed from RadColorEditor's history.
Declaration
public ReadOnlyCollection<Color> RemovedItems { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Media.Color>
|