Hi,
I use XamTextEditor in XamDataGrid and set its ValueToDisplayTextConverter to my converter which reads a global setting to format the display value. The problem I'm having now is when the global setting is changed, I want the already displayed grid have a refresh so that the changed format can be applied. Is there any way to do this? Thanks!
Cheers,
Daniel
Hello Daniel,
Resetting the style will call the Convert method of the ValueToDisplayTextConverter, for example :
xamDataGrid1.FieldSettings.EditorStyle =
null;
this.Resources["style"] as Style;