I have a Window with a TextBlock. This TextBlock has to show the value \"R\" if the binded value is 0 or \"M\" if the binded value is 1.
TextBlock
I have
Converters are Best in this scenario. As the name indicates converter converts the type. In this case you want to convert int to Char, so converters are much suitable. For More Info : ConverterPerformance