Class SelectedBrushChangedEventArgs
Provides data for the SelectedBrushChanged event.
Inheritance
System.Object
SelectedBrushChangedEventArgs
Namespace: Syncfusion.UI.Xaml.Editors
Assembly: Syncfusion.Editors.WinUI.dll
Syntax
public class SelectedBrushChangedEventArgs : EventArgs
Constructors
SelectedBrushChangedEventArgs(Brush, Brush)
Initializes a new instance of the SelectedBrushChangedEventArgs class.
Declaration
public SelectedBrushChangedEventArgs(Brush oldbrush, Brush newbrush)
Parameters
Type | Name | Description |
---|---|---|
Microsoft.UI.Xaml.Media.Brush | oldbrush | Previously selected brush. |
Microsoft.UI.Xaml.Media.Brush | newbrush | Newly selected brush. |
Properties
NewBrush
Gets the newly selected brush.
Declaration
public Brush NewBrush { get; }
Property Value
Type |
---|
Microsoft.UI.Xaml.Media.Brush |
OldBrush
Gets the previously selected brush.
Declaration
public Brush OldBrush { get; }
Property Value
Type |
---|
Microsoft.UI.Xaml.Media.Brush |