Class ColorChangedEventArgs
Definition
- Namespace:
- ElmSharp
- Assembly:
- ElmSharp.dll
- API Level:
- preview
It inherits System.EventArgs. Event ColorChanged of the ColorSelector contains ColorChangedEventArgs as a parameter. Refer to ColorSelectortype.
public class ColorChangedEventArgs : EventArgs
- Inheritance
Constructors
View SourceColorChangedEventArgs(Color, Color)
Creates and initializes a new instance of the ColorChangedEventArgs class.
Declaration
public ColorChangedEventArgs(Color oldColor, Color newColor)
Parameters
Type | Name | Description |
---|---|---|
Color | oldColor | Old color. |
Color | newColor | New color. |
API Level: preview
Properties
View SourceNewColor
Gets a new color in the color changed event.
Declaration
public Color NewColor { get; }
Property Value
Type | Description |
---|---|
Color |
API Level: preview
View SourceOldColor
Gets an old color in the color changed event.
Declaration
public Color OldColor { get; }
Property Value
Type | Description |
---|---|
Color |