Class PreviewSelectedItemChangedEventArgs
Provides data for the event that occurs when the preview of a selected item changes. This class can be used to pass contextual information during selection change notifications in custom controls or UI components.
Inheritance
System.Object
PreviewSelectedItemChangedEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class PreviewSelectedItemChangedEventArgs
Constructors
PreviewSelectedItemChangedEventArgs(TabItemExt, TabItemExt)
Initializes a new instance of the SelectedItemChangedEventArgs class.
Declaration
public PreviewSelectedItemChangedEventArgs(TabItemExt oldSelectedItem, TabItemExt newSelectedItem)
Parameters
| Type | Name | Description |
|---|---|---|
| TabItemExt | oldSelectedItem | The old selected item. |
| TabItemExt | newSelectedItem | The new selected item. |
Properties
Cancel
Gets or Sets the Cancel of Selected TabItem
Declaration
public bool Cancel { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
NewSelectedItem
Gets or sets the new selected item.
Declaration
public TabItemExt NewSelectedItem { get; set; }
Property Value
| Type | Description |
|---|---|
| TabItemExt | The new selected item. |
OldSelectedItem
Gets or sets the old selected item.
Declaration
public TabItemExt OldSelectedItem { get; set; }
Property Value
| Type | Description |
|---|---|
| TabItemExt | The old selected item. |