ListView.GroupHeaderTemplate Property

Definition

Gets or sets a DataTemplate for group headers.

public:
 property Microsoft::Maui::Controls::DataTemplate ^ GroupHeaderTemplate { Microsoft::Maui::Controls::DataTemplate ^ get(); void set(Microsoft::Maui::Controls::DataTemplate ^ value); };
public Microsoft.Maui.Controls.DataTemplate GroupHeaderTemplate { get; set; }
member this.GroupHeaderTemplate : Microsoft.Maui.Controls.DataTemplate with get, set
Public Property GroupHeaderTemplate As DataTemplate

Property Value

The DataTemplate for group headers, or null.

Remarks

Use this property to define a template for a Cell that will be used as the header for groups in this ListView. The BindingContext will be the IEnumerable for each group.

GroupHeaderTemplate is mutually exclusive with GroupDisplayBinding. Setting this property will set GroupDisplayBinding to null.

Empty groups will still display a group header.

Applies to

See also