Skip to main content

SchedulerViewBase.DateHeaderContentTemplateSelector Property

Gets or sets an object that selects a date header content template based on custom logic. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public DataTemplateSelector DateHeaderContentTemplateSelector { get; set; }

Property Value

Type Description
DataTemplateSelector

A System.Windows.Controls.DataTemplateSelector descendant that selects a template based on custom logic.

Remarks

The DateHeaderContentTemplate property specifies the data template used to display the content of date headers. If you have more than one template that can be used to render date headers, you can implement custom logic to select the required template. To do this, create a descendant of the System.Windows.Controls.DataTemplateSelector class, implement the SelectTemplate method that returns a template which meets the required condition, and assign it to the DateHeaderContentTemplateSelector property.

If both the DateHeaderContentTemplate and DateHeaderContentTemplateSelector properties are specified, a date header is rendered with the template returned by the template selector. If the template selector returns null, the template specified by the DateHeaderContentTemplate property is used.

See Also