Skip to content

ItemSelectionChangedEventArgs

JaykeBird edited this page Feb 21, 2023 · 2 revisions

Back to home | Back to Reference | View raw text

ItemSelectionChangedEventArgs class

Description

The event arguments for the SelectionChanged event of the SelectableUserControl.

Diagram

  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
Loading

Members

Properties

Public properties

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

Details

Summary

The event arguments for the SelectionChanged event of the SelectableUserControl.

Inheritance

  • EventArgs

Constructors

ItemSelectionChangedEventArgs

public ItemSelectionChangedEventArgs(bool oldValue, bool newValue, SelectionChangeTrigger trigger, object triggerSource)
Arguments
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.
Summary

Create a new ItemSelectionChangedEventArgs.

Properties

OldValue

public bool OldValue { get; }
Summary

The old value of the IsSelected property.

NewValue

public bool NewValue { get; }
Summary

The new value of the IsSelected property.

TriggerMethod

public SelectionChangeTrigger TriggerMethod { get; }
Summary

The method that was used to update the value.

TriggerSource

public object TriggerSource { get; }
Summary

The object that caused the update to occur, if available.

Generated with ModularDoc

Clone this wiki locally