wpf-devexpress-dot-xpf-dot-gantt-dot-ganttview-d957f115.md
Gets or sets an object that applies the task content template according to custom logic. This is a dependency property.
Namespace : DevExpress.Xpf.Gantt
Assembly : DevExpress.Xpf.Gantt.v25.2.dll
NuGet Package : DevExpress.Wpf.Gantt
public DataTemplateSelector TaskContentTemplateSelector { get; set; }
Public Property TaskContentTemplateSelector As DataTemplateSelector
| Type | Description |
|---|---|
| DataTemplateSelector |
A DataTemplateSelector descendant that applies the task content template according to custom logic.
|
The TaskContentTemplate property specifies a template that defines the appearance of task content.
If you use more than one task content template, you can implement a selector to apply the template according to custom logic. Follow the steps below:
TaskContentTemplateSelector property.If View contains both TaskContentTemplate and TaskContentTemplateSelector , the GanttControl renders the template assigned to the TaskContentTemplate property.
See Also