I’m trying to remove a string format of a cell while I’m editing it because it’s causing side effects. Actually, it’s moving my cursor while I’m editing the cell.
Here is my code :
<DataGridTextColumn Width="15*" ElementStyle="{StaticResource RightAlignStyle}"
Header="Coût (k€)" Binding="{Binding Path=TechnicalCostAmount, Mode=TwoWay,
UpdateSourceTrigger=PropertyChanged, StringFormat=N0, ConverterCulture=fr-FR}"/>
I think I’ve to do something with the EditingElementStyle property but I don’t find anything on the Web to do it.
Hope you could help me.
Cheers
Thomas
I think you could use a DataGridTemplateColumn: