How can I set a NumberFormat (like "#,##0.00") for Columns in a Grid? I don't find an appropriate Property in FieldSettings.
Hi,
For that you need to set the EditorStyle property of the FieldSettings. Format and FormatProvider are exposed on the editors themselves. Something like this:
<Style TargetType="{x:Type dge:ValueEditor}" >
<Setter Property="Format" Value="yyyy/mm/dd"/>
</Style>
</dg:FieldSettings.EditorStyle>
Hope this helps,
Sandip