I have a bool value that I need to display as \"Yes\" or \"No\" in a TextBlock. I am trying to do this with a StringFormat, but my StringFormat is ignored and the TextBlock
There is also another really great option. Check this one : Alex141 CalcBinding.
In my DataGrid, I only have :
<DataGridTextColumn Header="Mobile?" Binding="{conv:Binding (IsMobile?\'Yes\':\'No\')}" />
To use it, you only have to add the CalcBinding via GitHub, than in the UserControl/Windows declaration, you add
<Windows XXXXX xmlns:conv="clr-namespace:CalcBinding;assembly=CalcBinding"/>