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

NavBarViewBase Class

Serves as the base for objects representing Views in a NavBarControl.

Namespace: DevExpress.Xpf.NavBar

Assembly: DevExpress.Xpf.NavBar.v21.2.dll

NuGet Package: DevExpress.Wpf.NavBar

Declaration

public abstract class NavBarViewBase :
    Control

The following members return NavBarViewBase objects:

Remarks

The NavBarViewBase class implements the basic View functionality. This class declares members that are used to manage the appearance and behavior of view content elements (such as groups and items) and to respond to end-user actions performed within the NavBarControl. Note that the NavBarViewBase object itself has no visual representation, and cannot be applied directly to the navbar control. You can use this object’s descendants to display content data within the NavBarControl.

Since the NavBarViewBase class is the base for all View objects, it also serves as the type of properties, method and event parameters, etc. So, when you obtain a View via an event parameter or a property, you will need to perform a typecast to use the actual View’s specific settings.

To learn more, see the Views topic.

See Also