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

LayoutGroup.ItemTemplate Property

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

Namespace: DevExpress.Xpf.Docking

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Docking, DevExpress.Wpf.Navigation

Declaration

public DataTemplate ItemTemplate { get; set; }

Property Value

Type Description
DataTemplate

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

Remarks

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

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

See Also