wpf-devexpress-dot-xpf-dot-grid-dot-datacontrolbase-213cd332.md
Gets or sets the source from which the grid generates bands. This is a dependency property.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public IEnumerable BandsSource { get; set; }
Public Property BandsSource As IEnumerable
| Type | Description |
|---|---|
| IEnumerable |
The source from which the grid generates bands.
|
You can define bands in a ViewModel and display them in the GridControl. To do this, follow the steps below:
Create a collection of grid bands in a ViewModel.
Specify a data template that generates bands:
Assign the band collection to the BandsSource property and the band template to the DataControlBase.BandGeneratorTemplate property:
Note
You cannot specify the BandsSource and DataControlBase.ColumnsSource properties simultaneously.
Refer to the following help topic for more information: How to: Bind the Grid to Bands Specified in ViewModel.
See Also