`
tubaluer
  • 浏览: 1453644 次
文章分类
社区版块
存档分类
最新评论
  • sblig: c / c++ 是不一样的都会输出 100
    j = j++

.NET 2.0 - WinForm Control - DataGridView 编程36计(二)

 
阅读更多

.NET 2.0 - WinForm Control - DataGridView 编程36计(二)

目录:


① DataGridView Error图标表示的设定:

GO TO TOP
为了提醒用户注意,DataGridView可以使用Error图标来突出显示。如下图:


Error图标可以在单元格和行头内表示,但不能在列头上显示。

1) ErrorText属性
当设定单元格/行的ErrorText属性的内容后,单元格/行的Error图标就会被表示出来。另外,只有在DataGridView.ShowCellErrors = True时,Error图标才能显示。(默认即时True)
[VB.NET]
'设定(0,0)的单元格表示Error图标
DataGridView1(0,0).ErrorText="请确认单元格的值。"

'设定第4行(Index=3)的行头显示Error图标
DataGridView1.Rows(3).ErrorText="不能输入负值。"

2) CellErrorTextNeeded、RowErrorTextNeeded 事件
即时输入时的Error图标的表示,可以使用CellErrorTextNeeded事件
同时,在大量的数据处理时,需要进行多处的内容检查并显示Error图标的应用中。遍历单元格设定ErrorText的方法是效率低下的,应该使用CellErrorTextNeeded事件。行的Error图标的设定则应该用RowErrorTextNeeded事件。
但是,需要注意的是当DataSource属性设定了VirtualMode=True时,上述事件则不会被引发。

[VB.NET]
'CellErrorTextNeeded事件处理方法
PrivateSubDataGridView1_CellErrorTextNeeded(ByValsenderAsObject,_
ByValeAsDataGridViewCellErrorTextNeededEventArgs)_
HandlesDataGridView1.CellErrorTextNeeded
DimdgvAsDataGridView=CType(sender,DataGridView)
'单元格值为负整数时,Error图标被表示。
DimcellValAsObject=dgv(e.ColumnIndex,e.RowIndex).Value
IfTypeOfcellValIsIntegerAndAlsoCInt(cellVal)<0Then
e.ErrorText
="不能输入负整数。"
EndIf
EndSub

'RowErrorTextNeeded事件处理方法
PrivateSubDataGridView1_RowErrorTextNeeded(ByValsenderAsObject,_
ByValeAsDataGridViewRowErrorTextNeededEventArgs)_
HandlesDataGridView1.RowErrorTextNeeded
DimdgvAsDataGridView=CType(sender,DataGridView)
Ifdgv("Column1",e.RowIndex).ValueIsDBNull.ValueAndAlso_
dgv(
"Column2",e.RowIndex).ValueIsDBNull.ValueThen
e.ErrorText
=_
"Column1和Column2必须输入一个值。"
EndIf
EndSub

[C#]
//CellErrorTextNeeded事件处理方法
privatevoidDataGridView1_CellErrorTextNeeded(objectsender,
DataGridViewCellErrorTextNeededEventArgse)
{
DataGridViewdgv
=(DataGridView)sender;
//单元格值为负整数时,Error图标被表示。
objectcellVal=dgv[e.ColumnIndex,e.RowIndex].Value;
if(cellValisint&&((int)cellVal)<0)
{
e.ErrorText
="不能输入负整数。";
}
}

//RowErrorTextNeeded事件处理方法
privatevoidDataGridView1_RowErrorTextNeeded(objectsender,
DataGridViewRowErrorTextNeededEventArgse)
{
DataGridViewdgv
=(DataGridView)sender;
if(dgv["Column1",e.RowIndex].Value==DBNull.Value&&
dgv[
"Column2",e.RowIndex].Value==DBNull.Value)
{
e.ErrorText
=
"Column1和Column2必须输入一个值。";
}
}


 DataGridView 单元格入力值的验证:

如果想在单元格入力之后验证其入力值并在不正确的场合取消之后的动作,那么请使用事件:CellValidating。如下代码所示:当“Column1”为空的时候,则在该行设定为错误图标,并且取消之后的动作。(焦点无法离开该单元格)

[VB.NET]
'CellValidating事件处理方法
PrivateSubDataGridView1_CellValidating(ByValsenderAsObject,_
ByValeAsDataGridViewCellValidatingEventArgs)_
HandlesDataGridView1.CellValidating
DimdgvAsDataGridView=CType(sender,DataGridView)

Ifdgv.Columns(e.ColumnIndex).Name="Column1"AndAlso_
e.FormattedValue.ToString()
=""Then
'行的错误提示的设定
dgv.Rows(e.RowIndex).ErrorText="值未输入"
'取消已经输入的内容,还原成上次的输入内容。
'dgv.CancelEdit()
'取消之后的动作
e.Cancel=True
EndIf
EndSub

'CellValidated事件处理方法
PrivateSubDataGridView1_CellValidated(ByValsenderAsObject,_
ByValeAsDataGridViewCellEventArgs)_
HandlesDataGridView1.CellValidated
DimdgvAsDataGridView=CType(sender,DataGridView)
'验证通过的话,则清空行的错误提示
dgv.Rows(e.RowIndex).ErrorText=Nothing
EndSub

 DataGridView 用户输入不正确的时候的错误捕获处理

比如,数字型的列中输入不正确的值的时候处理发生错误的时候,会出现图标。但是图标表示出来,不会第一时间通知用户。

这里介绍另一种处理方式:绑定DataError事件进行处理。

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics