CellContentTemplateSelector Property
See Also 
Xceed.Wpf.DataGrid Assembly > Xceed.Wpf.DataGrid Namespace > Column Class : CellContentTemplateSelector Property

Gets or sets a DataTemplateSelector that provides a way to apply a different CellContentTemplate based on custom logic.

Syntax

Visual Basic (Declaration) 
Public Property CellContentTemplateSelector As DataTemplateSelector
C# 
public DataTemplateSelector CellContentTemplateSelector {get; set;}

Return Value

A reference to a DataTemplateSelector that provides a way to apply a different CellContentTemplate based on custom logic.

Remarks

To provide a custom DataTemplateSelector, a class that derives from the DataTemplateSelector and override the SelectTemplate method that will return the appropriate DataTemplates.

Requirements

Supported Frameworks: Microsoft .NET Framework version 3.5

See Also