在可数据WPF中只输入数字
本文关键字:输入 数字 WPF 数据 | 更新日期: 2023-09-27 18:15:59
我有一个数据表,如何制作,让用户只能在行数据表中输入数字?
DataColumn column;
DataRow row;
column = new DataColumn();
column.DataType = System.Type.GetType("System.String");
column.ColumnName = "Типы";
column.ReadOnly = true;
DataTable myTable = new DataTable();
myTable.Columns.Add("numericColumn", typeof(Int32)); // for integer column
myTable.Columns.Add("CharColumn", typeof(char)); // for character column
myTable.Columns.Add("DecimalColumn", typeof(Decimal)); // for Decimal column