InPlaceStateChangeEventArgs, classe
Mise à jour : November 2007
Fournit des données pour les événements InPlaceStateChanged et InPlaceStateChanging.
Espace de noms : Microsoft.Ink.TextInput
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
Public Class InPlaceStateChangeEventArgs _
Inherits EventArgs
'Utilisation
Dim instance As InPlaceStateChangeEventArgs
public class InPlaceStateChangeEventArgs : EventArgs
public ref class InPlaceStateChangeEventArgs : public EventArgs
public class InPlaceStateChangeEventArgs extends EventArgs
public class InPlaceStateChangeEventArgs extends EventArgs
Exemples
Les deux exemples suivants montrent comment utiliser InPlaceStateChangeEventArgs.
Le premier exemple attache un gestionnaire d'événements InPlaceStateChangingtip_InPlaceStateChanging à l'objet TextInputPanel, tip.
AddHandler tip.InPlaceStateChanging, AddressOf tip_InPlaceStateChanging
tip.InPlaceStateChanging += new EventHandler<InPlaceStateChangeEventArgs>(tip_InPlaceStateChanging);
Le deuxième exemple définit un gestionnaire d'événements pour l'événement InPlaceStateChanging où la valeur OldState est utilisée pour définir la propriété TextBox.Text (page pouvant être en anglais) d'une TextBox (page pouvant être en anglais), outputTextBox.
Sub tip_InPlaceStateChanging(ByVal sender As Object, ByVal e As InPlaceStateChangeEventArgs)
outputTextBox.Text += "In Place State Changing from " + e.OldState.ToString() + Environment.NewLine
End Sub
void tip_InPlaceStateChanging(object sender, InPlaceStateChangeEventArgs e)
{
outputTextBox.Text += "In Place State Changing from " + e.OldState + Environment.NewLine;
}
Hiérarchie d'héritage
System.Object
System.EventArgs
Microsoft.Ink.TextInput.InPlaceStateChangeEventArgs
Sécurité des threads
Tous les membres static (Shared en Visual Basic) publics de ce type sont thread-safe. Il n'est pas garanti que les membres d'instance soient thread-safe.
Plateformes
Windows Vista, Windows XP SP2, Windows Server 2003
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0