Skip to main content

WindowsUIView.ContentContainers Property

Provides access to the Content Containers collection used within the current WindowsUIView.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[XtraSerializableProperty(XtraSerializationVisibility.Content)]
public ContentContainerCollection ContentContainers { get; }

Property Value

Type Description
DevExpress.XtraBars.Docking2010.Views.WindowsUI.ContentContainerCollection

A ContentContainerCollection populated with Content Containers used within the current WindowsUIView.

Remarks

WindowsUIView applications can utilize 5 Content Containers types: TileContainers, PageGroups, SplitGroups, SlideGroups and Pages. The containers collection used within a specific WindowsUIView can be accessed and modified via the ContentContainers property.

Adding and removing Content Containers from the ContentContainers collection fires the WindowsUIView.ContentContainerAdded and WindowsUIView.ContentContainerRemoved events respectively.

Handle the WindowsUIView.QueryStartupContentContainer event to set an application start-up container. See the How To: Create Content Containers Hierarchy topic to learn more.

See Also