Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DockLayoutManager.ItemTemplate Property

Gets or sets a DataTemplate used to render items stored in the DockLayoutManager.ItemsSource collection.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v24.2.dll

NuGet Package: DevExpress.Wpf.Docking

#Declaration

public DataTemplate ItemTemplate { get; set; }

#Property Value

Type Description
DataTemplate

A DataTemplate used to render items in the DockLayoutManager.ItemsSource collection.

#Remarks

You can populate the DockLayoutManager with items from a data source by using the DockLayoutManager.ItemsSource collection. To render elements of this collection as layout items, provide templates via the ItemTemplate or DockLayoutManager.ItemTemplateSelector property.

See the Data Templating Overview topic to learn about DataTemplate objects.

See Also