DataGridView.RowValidated イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
行の検証が終了した後で発生します。
public:
event System::Windows::Forms::DataGridViewCellEventHandler ^ RowValidated;
public event System.Windows.Forms.DataGridViewCellEventHandler RowValidated;
public event System.Windows.Forms.DataGridViewCellEventHandler? RowValidated;
member this.RowValidated : System.Windows.Forms.DataGridViewCellEventHandler
Public Custom Event RowValidated As DataGridViewCellEventHandler
イベントの種類
例
次のコード サンプルでは、このイベントを使用して、行の検証後に残された可能性のあるエラー注釈をクリアします。
private void RemoveAnnotations(Object sender,
DataGridViewCellEventArgs args)
{
foreach (DataGridViewCell cell in
songsDataGridView.Rows[args.RowIndex].Cells)
{
cell.ErrorText = String.Empty;
}
foreach (DataGridViewRow row in songsDataGridView.Rows)
{
row.ErrorText = String.Empty;
}
}
Private Sub RemoveAnnotations(ByVal sender As Object, _
ByVal args As DataGridViewCellEventArgs) _
Handles songsDataGridView.RowValidated
For Each cell As DataGridViewCell In _
songsDataGridView.Rows(args.RowIndex).Cells
cell.ErrorText = String.Empty
Next
For Each row As DataGridViewRow In songsDataGridView.Rows
row.ErrorText = String.Empty
Next
End Sub
注釈
このイベントは、 イベントに Validated 似ています。 値の行に対して後処理を実行するには、このイベントを使用します。
イベントを処理する方法の詳細については、次を参照してください。処理とイベントの発生します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET