DataGrid 单元格输入验证 由ValidatingEditor事件完成

private void gdv_reguline_ValidatingEditor(object sender, DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventArgs e)
        {
            int col = ((DevExpress.XtraGrid.Views.Grid.GridView)sender).FocusedColumn.AbsoluteIndex;
            if (col == 4 || col == 5)
            {
                object v = e.Value;
                int tm;
                if (v != null && (!Int32.TryParse(v.ToString(),out tm) || tm<0 )) //自定义验证逻辑
                {
                    e.Valid = false; //控制是否通过验证的开关


                    e.ErrorText = "必须输入正整数!"; //提示的验证失败的原因
                }
            }
        }

posted on 2017-03-26 15:23  mol1995  阅读(2211)  评论(0编辑  收藏  举报

导航