Why is there seemingly no CharacterCasing property in the datapresenter, specifically the unbound field? I would like cells that are only upper case, but I can't just set it to upper? How can I do this?
Hi,
The code should solve the problem:
{
e.Editor.Text = e.Editor.Value.ToString().ToUpper();
e.Editor.Value = e.Editor.Text;
}
You need to hook to the XamDataGrid’s CellChanged event and if the calling cell is part of the desired unbound field execute the code.