Patient.name‘s actual data is in Caps. I have to make it mixed case date for nicer viewing. Can I do this here on the XAML? How can I code this?
<dxg:GridColumn FieldName="Patient.Name" />
<dxg:GridColumn FieldName="Patient.Room" />
<dxg:GridColumn FieldName="Patient.BirthDate" />
You can add a property that wraps Patient.Room etc. with code that converts to title case and bind to that property instead.
Your binding:
In your class:
http://techiecocktail.blogspot.com/2008/09/convert-given-string-to-mixed-case-or.html