want to show the numbers in TextBox with thousand separator without binding it and without programmatically
Just in XAML
like this example : 123456 => 123,456 or 1000000000 => 1,000,000,000
Also this line in XAML have error :
<TextBox x:Name="text_main2" Text="{Binding StringFormat={}{0:N0}}" VerticalAlignment="Top" Width="303"/>
Error :
Also I don't no can I do this work in TextBoxMask : xcdeed wpf toolkit
<xctk:MaskedTextBox Mask="0000" PromptChar=" " x:Name="txtname" HorizontalContentAlignment="Right" HorizontalAlignment="Left" Height="22" Margin="512,296,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="152"/>
Please help me what's the easiest way to do this without additional code , like other software they have a property for textbox as : Thousands separated = true

