码迷,mamicode.com
首页 > Windows程序 > 详细

datagridview相关

时间:2020-06-19 10:33:30      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:turn   parse   new   span   tin   data   sage   ESS   tag   

一、控制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相关

标签:turn   parse   new   span   tin   data   sage   ESS   tag   

原文地址:https://www.cnblogs.com/ZGQ-VIP/p/13161593.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!