I want to show the numbers in text block with thousand separator in xaml but without floating point. how can i do it. i tried the following codes:
StringFormat={}{0:N}
it shows floating point.
StringFormat={}{0:000'.'000}}
it shows 1234 like 001,234 how can it do it?