Xceed DataGrid for Silverlight Documentation
CellEditorTemplate Property
Example 


Gets or sets the DataTemplate that will be used to edit the content of the column's cells.
Syntax
'Declaration
 
Public Property CellEditorTemplate As DataTemplate
'Usage
 
Dim instance As Column
Dim value As DataTemplate
 
instance.CellEditorTemplate = value
 
value = instance.CellEditorTemplate
public DataTemplate CellEditorTemplate {get; set;}

Property Value

The DataTemplate that will be used to edit the content of the column's cells.
Example
<DataTemplate>
  <ComboBox>
     <ComboBox.Items>
        <s:String>Canada</s:String>
        <s:String>USA</s:String>
        <s:String>Mexico</s:String>
     </ComboBox.Items>
  </ComboBox>
</DataTemplate>
Requirements

Target Platforms: Windows 7, Windows Vista, Windows XP SP3, Windows Server 2008 family

See Also

Reference

Column Class
Column Members

Send Feedback