ColumnBase.EditTemplate Property
This API is outdated. We recommend that you use ColumnBase.CellEditTemplate instead. Gets or sets a template that displays a custom editor used to edit column values. This is a dependency property.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll
NuGet Package: DevExpress.Wpf.Grid.Core
#Declaration
[Browsable(false)]
public ControlTemplate EditTemplate { get; set; }
#Property Value
Type | Description |
---|---|
Control |
A Control |
#Remarks
Tip
Starting from v18.
If the Name property of a control used to display cell values is set to PART_Editor, the GridControl treats it as its inner control, i.e., fills it with values and enables search results highlighting.
The following code example shows how to use custom editors (ProgressBar and Slider) to display and edit the Units On Order column’s values.
<dxg:GridControl x:Name="grid" ItemsSource="{Binding Products}"
CustomUnboundColumnData="grid_CustomUnboundColumnData">
<dxg:GridControl.Columns>
<!-- -->
<dxg:GridColumn FieldName="UnitsOnOrder">
<dxg:GridColumn.DisplayTemplate>
<ControlTemplate>
<ProgressBar Minimum="0" Maximum="50"
Value="{Binding Path=DisplayText, Mode=OneWay,
RelativeSource={RelativeSource TemplatedParent}}"/>
</ControlTemplate>
</dxg:GridColumn.DisplayTemplate>
<dxg:GridColumn.EditTemplate>
<ControlTemplate>
<Grid VerticalAlignment="Center">
<Slider Name="PART_Editor" Minimum="0" Maximum="50"
Value="{Binding Path=EditValue, Mode=TwoWay,
RelativeSource={RelativeSource TemplatedParent},
Converter={local:IntToDoubleConverter}}" />
<TextBlock Text="{Binding EditValue, RelativeSource={RelativeSource TemplatedParent}}"
Foreground="Black" VerticalAlignment="Center"
HorizontalAlignment="Center" TextWrapping="NoWrap" />
</Grid>
</ControlTemplate>
</dxg:GridColumn.EditTemplate>
</dxg:GridColumn>
</dxg:GridControl.Columns>
<dxg:GridControl.View>
<dxg:TableView AutoWidth="True" />
</dxg:GridControl.View>
</dxg:GridControl>
Note
Using Base