可以在BeforeSaveDataRow事件设置代码, 这样保存的时候会统一进行检查:
If e.DataRow.IsNull("列名") Then
MessageBox.Show("某列不允许为空!")
e.Cancel = True
End If