In This Article

TabPropertyChangingRoutedEventArgs Class

Provides event arguments for a cancelable Tab property change routed event, indicating the old and new values.

public class TabPropertyChangingRoutedEventArgs : PropertyChangingRoutedEventArgs<Tab>
Inheritance:
object EventArgs RoutedEventArgs PropertyChangingRoutedEventArgs<Tab> object

Constructors

TabPropertyChangingRoutedEventArgs(Tab, Tab)

Initializes a new instance of the TabPropertyChangingRoutedEventArgs class with the Cancel property set to false.

public TabPropertyChangingRoutedEventArgs(Tab oldValue, Tab newValue)
Parameter Type Description
oldValue Tab

The current value of the property.

newValue Tab

The new value of the property that will be set if the property change is not cancelled.

TabPropertyChangingRoutedEventArgs(RoutedEvent, Tab, Tab)

Initializes a new instance of the TabPropertyChangingRoutedEventArgs class with the Cancel property set to false.

public TabPropertyChangingRoutedEventArgs(RoutedEvent routedEvent, Tab oldValue, Tab newValue)
Parameter Type Description
routedEvent RoutedEvent

The routed event identifier for this event arguments instance.

oldValue Tab

The current value of the property.

newValue Tab

The new value of the property that will be set if the property change is not cancelled.

Inherited Members