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

WindowsUIView.NavigatedTo Event

Occurs when the end-user navigates to a child Content Container or to another Document within the current Container.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v18.1.dll

Declaration

public event NavigationEventHandler NavigatedTo

Event Data

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

Property Description
Document Gets a Document involved in the current navigation event.
NavigationMode Gets the current navigation’s direction.
Parameter Gets or sets the parameter passed to the current navigation event.
Source Gets a Content Container from which an end-user navigates. Inherited from BaseNavigationEventArgs.
SourceContextualZoomLevel Gets the current zoom level of a source Content Container. Inherited from BaseNavigationEventArgs.
Tag Gets the tag of a Tile which fired the current navigation event when clicked.
Target Gets the Content Container to which an end-user navigates.
TargetContextualZoomLevel Gets the current zoom level of a target Content Container.
View Gets a WindowsUIView in which the current navigation event occurs. Inherited from BaseNavigationEventArgs.

Remarks

The NavigatedTo event occurs when an end-user navigates:

  • from the current parent Content Container to its child Content Container;
  • through Documents within a PageGroup container;
  • to a SplitGroup or a SlideGroup container from its ‘Overview’ screen.

For other navigation scenarios, the WindowsUIView.NavigatedFrom event occurs. See the Application Hierarchy and Module Navigation topic to learn more.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the NavigatedTo event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also