ComponentOne FlexGrid for UWP
C1.UWP.FlexGrid Assembly / C1.Xaml.FlexGrid Namespace / Column Class / CellEditingTemplate Property

In This Topic
    CellEditingTemplate Property
    In This Topic
    Gets or sets the template used to display the contents of a cell that is in editing mode.
    Syntax
    'Declaration
     
    
    Public Property CellEditingTemplate As DataTemplate
    public DataTemplate CellEditingTemplate {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