Gets or sets the template used to display the contents of a cell that is in editing mode.

Namespace:  C1.Silverlight.FlexGrid
Assembly:  C1.Silverlight.FlexGrid.4 (in C1.Silverlight.FlexGrid.4.dll)

Syntax

C#
public DataTemplate CellEditingTemplate { get; set; }
Visual Basic
Public Property CellEditingTemplate As DataTemplate
	Get
	Set

Remarks

The CellTemplate and CellEditingTemplate properties work like the equivalent ones in the Microsoft DataGrid for Silverlight/WPF.

They can be defined in XAML and are used to create the visual elements that represent the cells in the column.

CellTemplate creates cells in regular mode and CellEditingTemplate creates cells in edit mode.

For an example, see the CellTemplate property.

See Also