Class ClassificationChangedEventArgs
Arguments which contains the information about all changes
Inheritance
System.Object
System.EventArgs
ClassificationChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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 |
---|---|---|
System.Collections.Generic.IList<ClassificationItem> | added | Added items |
System.Collections.Generic.IList<System.Guid> | removed | Removed items |
Properties
| Improve this Doc View SourceAdded
Gets all added classifications
Declaration
public IReadOnlyList<ClassificationItem> Added { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<ClassificationItem> |
Removed
Gets all removed classifications
Declaration
public IReadOnlyList<Guid> Removed { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.Guid> |