A
Andrus
I need to create WinForms DataGridView column which shows spaces between
thousands.
I have found that MaskedTextBox Mask property supports this
I tried to add column to DataGridView using
var column = new DataGridViewMaskedTextBoxColumn();
column.Mask= "99 999 999.99";
but got error because DataGridViewMaskedTextBoxColumn does not exist.
How to add Mask to DataGridView column ?
Andrus.
thousands.
I have found that MaskedTextBox Mask property supports this
I tried to add column to DataGridView using
var column = new DataGridViewMaskedTextBoxColumn();
column.Mask= "99 999 999.99";
but got error because DataGridViewMaskedTextBoxColumn does not exist.
How to add Mask to DataGridView column ?
Andrus.