windowsforms-11354-controls-and-libraries-application-ui-manager-views.md
The DocumentManager View is the component’s main element that owns all Documents and manages their appearance and behavior.
Each Application UI Manager View is represented by a separate class.
All Views derive from the BaseView class, which provides common View settings.
When you place an Application UI Manager on a form, is has the Tabbed View applied. Invoke the component smart tag and click “Convert to…” to create and apply another View. Note that if you already have Documents added to your View, they will be lost upon the conversion.
To add Views in code, create instances of required View classes and add them into the DocumentManager.ViewCollection collection. Then, assign a View to the DocumentManager.View property to make this View currently active.
Below is a brief description and feature summary for each available View.
Tabbed View
Main article: Tabbed View
Native MDI View
Main article: Native MDI View
Widget View
Main article: Widget View
WindowsUI View
Main article: WindowsUI View
Every View provides the Controller property. This property stores an object that exposes public API to manage in code the View itself and its child documents. For example, using the NativeMdiView.Controller property, you can retrieve an INativeMdiViewController object and call its INativeMdiViewController.Cascade method to cascade all currently visible child MDI forms.