VB   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了.NET 2.0 - WinForm Control - DataGridView 编程36计(二)大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

目录:
① Error图标表示的设定
② 单元格入力值得验证
③ 用户入力值发生错误时的捕获


① 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 事件处理方法
Private Sub DataGridView1_CellErrorTextNeeded(ByVal sender As Object,_
ByVal e As DataGridViewCellErrorTextNeededEventArgs) _
Handles DataGridView1.CellErrorTextNeeded
Dim dgv As DataGridView = CType(sender,DataGridView)
' 单元格值为负整数时,Error图标被表示。
Dim cellVal As Object = dgv(e.columnIndex,e.RowIndeX).Value
If TypeOf cellVal Is Integer AndAlso CInt(cellVal) < 0 Then
e.ErrorText = "不能输入负整数。"
End If
End Sub

'RowErrorTextNeeded 事件处理方法
Private Sub DataGridView1_RowErrorTextNeeded(ByVal sender As Object,_
ByVal e As DataGridViewRowErrorTextNeededEventArgs) _
Handles DataGridView1.RowErrorTextNeeded
Dim dgv As DataGridView = CType(sender,DataGridView)
if Dgv("column1",e.RowIndeX).Value Is DBNull.Value AndAlso _
dgv("column2",e.RowIndeX).Value Is DBNull.Value Then
e.ErrorText = _
"column1和column2必须输入一个值。"
End If
End Sub[C#]
// CellErrorTextNeeded 事件处理方法
private void DataGridView1_CellErrorTextNeeded(object sender,
DataGridViewCellErrorTextNeededEventArgs E)
{
DataGridView dgv = (DataGridView)sender;
// 单元格值为负整数时,Error图标被表示。
object cellVal = dgv[e.columnIndex,e.RowIndex].Value;
if (cellVal is int && ((int)cellVal) < 0)
{
e.ErrorText = "不能输入负整数。";
}
}

// RowErrorTextNeeded 事件处理方法
private void DataGridView1_RowErrorTextNeeded(object sender,
DataGridViewRowErrorTextNeededEventArgs E)
{
DataGridView dgv = (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事件处理方法
Private Sub DataGridView1_CellValidaTing(ByVal sender As Object,_
ByVal e As DataGridViewCellValidaTingEventArgs) _
Handles DataGridView1.CellValidaTing
Dim dgv As DataGridView = CType(sender,DataGridView)

if Dgv.columns(e.columnIndeX).Name = "column1" AndAlso _
e.FormattedValue.ToString() = "" Then
'行的错误提示的设定
dgv.Rows(e.RowIndeX).ErrorText = "值未输入。"
'取消已经输入的内容,还原成上次的输入内容。
'dgv.CancelEdit()
'取消之后的动作
e.Cancel = True
End If
End Sub

'CellValidated事件处理方法
Private Sub DataGridView1_CellValidated(ByVal sender As Object,_
ByVal e As DataGridViewCellEventArgs) _
Handles DataGridView1.CellValidated
Dim dgv As DataGridView = CType(sender,DataGridView)
'验证通过的话,则清空行的错误提示
dgv.Rows(e.RowIndeX).ErrorText = Nothing
End Sub

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

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

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

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/fangxinggood/archive/2007/10/12/1821425.aspx

大佬总结

以上是大佬教程为你收集整理的.NET 2.0 - WinForm Control - DataGridView 编程36计(二)全部内容,希望文章能够帮你解决.NET 2.0 - WinForm Control - DataGridView 编程36计(二)所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。