datagridview相关
2021-01-06 23:27
标签:turn parse new span tin data sage ESS tag 一、控制cell输入格式(整数为例) datagridview相关 标签:turn parse new span tin data sage ESS tag 原文地址:https://www.cnblogs.com/ZGQ-VIP/p/13161593.html //private void dataGridView5_CellValidating(object sender, DataGridViewCellValidatingEventArgs e)
//{
// if (dataGridView1.Rows[e.RowIndex].IsNewRow) return;
// int dci;
// if (e.ColumnIndex == 4 || e.ColumnIndex == 6 || e.ColumnIndex == 7)
// {
// if (e.FormattedValue != null && e.FormattedValue.ToString().Length > 0)
// {
// if (!int.TryParse(e.FormattedValue.ToString(), out dci) || dci // {
// e.Cancel = true;
// MessageBox.Show("请输入整数", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
// }
// }
// }
//}