Hi,
Another n00b question.

I got a datagrid that bind to a collection, works fine.
One field in the model is an integer which displays fine.
It's an amount, but I must not format it as a Currency, just have it start with an "R"

This works (formatting as an currency) so I know I'm on the right track:
Code:
<DataGridTextColumn Header="Arrears Balance" Binding="{Binding ArrearsAccountBalance,StringFormat={}{0:C}}" />
Figure I just need the right formatting specified in there to leave the number as is, just put an "R" in front of it?