Class ClassificationChangedEventArgs
Arguments which contains the information about all changes
Inheritance
System.Object
ClassificationChangedEventArgs
Namespace: Simplic.Framework.Extension.UI
Assembly: Simplic.Framework.Extension.dll
Syntax
public class ClassificationChangedEventArgs : EventArgs
Constructors
| Improve this Doc View SourceClassificationChangedEventArgs(IList<ClassificationItem>, IList<Guid>)
Initialize new event args
Declaration
public ClassificationChangedEventArgs(IList<ClassificationItem> added, IList<Guid> removed)
Parameters
Type | Name | Description |
---|---|---|
IList<ClassificationItem> | added | Added items |
IList<Guid> | removed | Removed items |
Properties
| Improve this Doc View SourceAdded
Gets all added classifications
Declaration
public IReadOnlyList<ClassificationItem> Added { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<ClassificationItem> |
Removed
Gets all removed classifications
Declaration
public IReadOnlyList<Guid> Removed { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<Guid> |