datagridview相关
Posted zgq-vip
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了datagridview相关相关的知识,希望对你有一定的参考价值。
一、控制cell输入格式(整数为例)
//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 < 0) // { // e.Cancel = true; // MessageBox.Show("请输入整数", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); // } // } // } //}
以上是关于datagridview相关的主要内容,如果未能解决你的问题,请参考以下文章
在 vb.net 的文本框中显示 datagridview 单元格数据