Set EnableGroupSeparator
31 Oct 20191 minute to read
EnableGroupSeparator
property is used to get rid of the comma in the Value of SfNumericTextBox.
SfNumericTextBox numericTextBox=new SfNumericTextBox();
numericTextBox.Value=12345;
numericTextBox.EnableGroupSeparator = true;
this.Content = numericTextBox;