PropertyTabChangedEventArgs Classe
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Fournit des données pour l'événement PropertyTabChanged de PropertyGrid.
public ref class PropertyTabChangedEventArgs : EventArgs
[System.Runtime.InteropServices.ComVisible(true)]
public class PropertyTabChangedEventArgs : EventArgs
public class PropertyTabChangedEventArgs : EventArgs
[<System.Runtime.InteropServices.ComVisible(true)>]
type PropertyTabChangedEventArgs = class
inherit EventArgs
type PropertyTabChangedEventArgs = class
inherit EventArgs
Public Class PropertyTabChangedEventArgs
Inherits EventArgs
- Héritage
- Attributs
Exemples
L’exemple de code suivant illustre l’utilisation de ce type. Dans l’exemple, un gestionnaire d’événements signale l’occurrence de l’événement PropertyTabChanged . Ce rapport vous aide à savoir quand l’événement se produit et peut vous aider dans le débogage. Pour signaler plusieurs événements ou événements qui se produisent fréquemment, envisagez de ShowConsole.WriteLine remplacer par ou d’ajouter le message à un message multiligne TextBox.
Pour exécuter l’exemple de code, collez-le dans un projet qui contient un instance de type PropertyGrid nommé PropertyGrid1
. Vérifiez ensuite que le gestionnaire d’événements est associé à l’événement PropertyTabChanged .
private void PropertyGrid1_PropertyTabChanged(Object sender, PropertyTabChangedEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "OldTab", e.OldTab );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "NewTab", e.NewTab );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "PropertyTabChanged Event" );
}
Private Sub PropertyGrid1_PropertyTabChanged(sender as Object, e as PropertyTabChangedEventArgs) _
Handles PropertyGrid1.PropertyTabChanged
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "OldTab", e.OldTab)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "NewTab", e.NewTab)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"PropertyTabChanged Event")
End Sub
Remarques
L’événement PropertyTabChanged se produit lorsque l’utilisateur sélectionne un nouvel onglet de propriété dans .PropertyGrid
Un PropertyTabChangedEventArgs fournit les données de l’ancien onglet et du nouvel onglet sélectionnés.
Pour plus d'informations sur la gestion des événements, voir gestion et déclenchement d’événements.
Constructeurs
PropertyTabChangedEventArgs(PropertyTab, PropertyTab) |
Initialise une nouvelle instance de la classe PropertyTabChangedEventArgs. |
Propriétés
NewTab |
Obtient le nouveau PropertyTab sélectionné. |
OldTab |
Obtient l'ancien PropertyTab sélectionné. |
Méthodes
Equals(Object) |
Détermine si l'objet spécifié est égal à l'objet actuel. (Hérité de Object) |
GetHashCode() |
Fait office de fonction de hachage par défaut. (Hérité de Object) |
GetType() |
Obtient le Type de l'instance actuelle. (Hérité de Object) |
MemberwiseClone() |
Crée une copie superficielle du Object actuel. (Hérité de Object) |
ToString() |
Retourne une chaîne qui représente l'objet actuel. (Hérité de Object) |