Thousand Separator with comma in columnGridView when the user is typing
问题 I am gonna to separate numbers with comma, What I am seeking is exactly like this Comma Separator in c# but the solution in that question did not work for me as I am doing this in column in gridview instead of textbox. What I have done till now (part of the class for columns in a gridview): public override string Text { get { } set { base.Text = GetFormattedText(value); } } protected override void OnTextChanged(System.EventArgs e) { base.OnTextChanged(e); Text = GetFormattedText(Text); }