So I have this XAML:
<TextBlock.Text>
<MultiBinding StringFormat="SomeText: 	{0}
SomeOtherText: 		{1}">
<Binding Path="SomeBoundVar" />
<Binding Path="AnotherBoundVar" StringFormat="{}{0:N2}" />
</MultiBinding>
</TextBlock.Text>
And I'd like to add a thousand separator to the 2nd binding (the StringFormat as above doesn't work). How can I do that ? Or do I have to use a converter ?
I had a same kind of issue and following is the way I fixed.
Sample Result
Balance AED : 2,456.45