Skip to main content
A newer version of this page is available. .

XtraTabbedMdiManager.SetNextMdiChild Event

Provides the ability to cycle through the pages using custom rules.

Namespace: DevExpress.XtraTabbedMdi

Assembly: DevExpress.XtraBars.v18.2.dll

Declaration

[DXCategory("Events")]
public event SetNextMdiChildEventHandler SetNextMdiChild

Event Data

The SetNextMdiChild event's data class is SetNextMdiChildEventArgs. The following properties provide information specific to this event:

Property Description
ForwardNavigation Gets a value which identifies the direction in which the pages are cycled.
Handled Gets or sets whether an event was handled, if it was handled the default actions are not required.

Remarks

End-users can cycle through the pages using the CTRL+TAB/CTRL+SHIFT+TAB keys. In this case the SetNextMdiChild event is raised. It allows the default behavior to be ignored and custom rules for cycling through the pages to be implemented.

The event parameter’s SetNextMdiChildEventArgs.ForwardNavigation property allows you to identify the direction in which pages are cycled. Set the SetNextMdiChildEventArgs.Handled property to true to cancel the default cycling mechanism which is specified by the XtraTabbedMdiManager.SetNextMdiChildMode property and implement a custom mechanism.

See Also