本文介绍了如何接受datagrid单元格中的数值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嗨
datagridcell只接受我在dgv_CellValidating下编写此代码的数字值,但它不能正常运行哪个事件
Hi
datagridcell Accept only numeric values i wrote this code under dgv_CellValidating,but its not working which event is currect
if (e.ColumnIndex == 4) // 1 should be your column index
{
int i;
if (!int.TryParse(Convert.ToString(e.FormattedValue), out i))
{
e.Cancel = true;
label1.Text = "please enter numeric";
}
else
{
// the input is numeric
}
}
推荐答案
这篇关于如何接受datagrid单元格中的数值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!