Skip to main content

LayoutGroup.SelectedTabChildChanged Event

Fires when a new tab is selected in the current group. This member is in effect when the current group is rendered as a tabbed group.

Namespace: DevExpress.Xpf.LayoutControl

Assembly: DevExpress.Xpf.LayoutControl.v23.2.dll

NuGet Package: DevExpress.Wpf.LayoutControl

Declaration

public event ValueChangedEventHandler<FrameworkElement> SelectedTabChildChanged

Event Data

The SelectedTabChildChanged event's data class is ValueChangedEventArgs<FrameworkElement>. The following properties provide information specific to this event:

Property Description
NewValue Gets an object that represents the new value of a specific property.
OldValue Gets an object that represents the old value of a specific property.

Remarks

The SelectedTabChildChanged event fires when a new tab is selected in the current group. To get the object that represents the selected tab, use the event’s parameter or the LayoutGroup.SelectedTabChild property.

See Also