Partager via


DataRepeaterDataErrorEventArgs.Control, propriété

Obtient Control qui a déclenché l'erreur de données.

Espace de noms :  Microsoft.VisualBasic.PowerPacks
Assembly :  Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntaxe

'Déclaration
Public ReadOnly Property Control As Control
public Control Control { get; }
public:
property Control^ Control {
    Control^ get ();
}
member Control : Control
function get Control () : Control

Valeur de propriété

Type : System.Windows.Forms.Control
Le contrôle qui a déclenché l'erreur.

Notes

L'événement d'DataError vous permet pour gérer les exceptions qui sont levées en code qui est appelé par un contrôle d'DataRepeater pendant des opérations informatiques.

La propriété d'Control contient le contrôle sur DataRepeaterItem dans lequel l'erreur s'est produite.

Exemples

L'exemple suivant montre comment utiliser les données d'DataRepeaterDataErrorEventArgs pour afficher un message lorsqu'une erreur de données se produit.

Private Sub DataRepeater1_DataError(
    ByVal sender As Object, 
    ByVal e As Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs
  ) Handles DataRepeater1.DataError

    Dim ErrorMsg As String
    ' Create an error string.
    ErrorMsg = "Invalid value entered for " & e.Control.Name & ". "
    ErrorMsg = ErrorMsg & e.Exception.Message
    ' Display the error to the user.
    MsgBox(ErrorMsg)
    ' Do not raise an exception.
    e.ThrowException = False
End Sub
private void dataRepeater1_DataError(object sender, 
    Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs e)
{
    string ErrorMsg;
    // Create an error string.
    ErrorMsg = "Invalid value entered for " + e.Control.Name + ". ";
    ErrorMsg = ErrorMsg + e.Exception.Message;
    // Display the error to the user.
    MessageBox.Show(ErrorMsg);
    // Do not raise an exception.
    e.ThrowException = false;
}

Sécurité .NET Framework

Voir aussi

Référence

DataRepeaterDataErrorEventArgs Classe

Microsoft.VisualBasic.PowerPacks, espace de noms

DataError

Autres ressources

Introduction au contrôle DataRepeater (Visual Studio)