-
Notifications
You must be signed in to change notification settings - Fork 3
ItemSelectionChangedEventArgs
JaykeBird edited this page Feb 21, 2023
·
2 revisions
Back to home | Back to Reference | View raw text
The event arguments for the SelectionChanged event of the SelectableUserControl.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi
SolidShineUi.ItemSelectionChangedEventArgs[[ItemSelectionChangedEventArgs]]
end
subgraph System
System.EventArgs[[EventArgs]]
end
System.EventArgs --> SolidShineUi.ItemSelectionChangedEventArgs
Type | Name | Methods |
---|---|---|
bool |
NewValue The new value of the IsSelected property. |
get |
bool |
OldValue The old value of the IsSelected property. |
get |
SelectionChangeTrigger |
TriggerMethod The method that was used to update the value. |
get |
object |
TriggerSource The object that caused the update to occur, if available. |
get |
The event arguments for the SelectionChanged event of the SelectableUserControl.
EventArgs
public ItemSelectionChangedEventArgs(bool oldValue, bool newValue, SelectionChangeTrigger trigger, object triggerSource)
Type | Name | Description |
---|---|---|
bool |
oldValue | The old IsSelected value. |
bool |
newValue | The new IsSelected value. |
SelectionChangeTrigger |
trigger | The trigger method that caused the value to be updated. |
object |
triggerSource | The source object that updated the value. |
Create a new ItemSelectionChangedEventArgs.
public bool OldValue { get; }
The old value of the IsSelected property.
public bool NewValue { get; }
The new value of the IsSelected property.
public SelectionChangeTrigger TriggerMethod { get; }
The method that was used to update the value.
public object TriggerSource { get; }
The object that caused the update to occur, if available.
Generated with ModularDoc