TextInputPanel.CorrectionModeChanged, événement
Mise à jour : November 2007
Se produit lorsque le mode de correction a été modifié.
Espace de noms : Microsoft.Ink.TextInput
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
Public Event CorrectionModeChanged As EventHandler(Of CorrectionModeChangeEventArgs)
'Utilisation
Dim instance As TextInputPanel
Dim handler As EventHandler(Of CorrectionModeChangeEventArgs)
AddHandler instance.CorrectionModeChanged, handler
public event EventHandler<CorrectionModeChangeEventArgs> CorrectionModeChanged
public:
event EventHandler<CorrectionModeChangeEventArgs^>^ CorrectionModeChanged {
void add (EventHandler<CorrectionModeChangeEventArgs^>^ value);
void remove (EventHandler<CorrectionModeChangeEventArgs^>^ value);
}
/** @event */
public void add_CorrectionModeChanged (EventHandler<CorrectionModeChangeEventArgs> value)
/** @event */
public void remove_CorrectionModeChanged (EventHandler<CorrectionModeChangeEventArgs> value)
JScript ne prend pas en charge les événements.
Exemples
Les deux exemples suivants montrent comment utiliser le CorrectionModeChanged.
Le premier exemple attache un gestionnaire d'événements CorrectionModeChanged, tip_CorrectionModeChanged, à l'objet TextInputPanel, tip.
AddHandler tip.CorrectionModeChanged, AddressOf tip_CorrectionModeChanged
tip.CorrectionModeChanged += new EventHandler<CorrectionModeChangeEventArgs>(tip_CorrectionModeChanged);
Le deuxième exemple définit un gestionnaire d'événements pour l'événement CorrectionModeChanged où les valeurs contenues dans le NewMode et CurrentCorrectionMode sont utilisées pour définir la propriété TextBox.Text (page pouvant être en anglais) d'une TextBox (page pouvant être en anglais) outputTextBox.
Sub tip_CorrectionModeChanged(ByVal sender As Object, ByVal e As CorrectionModeChangeEventArgs)
outputTextBox.Text += "New Correction Mode is " + e.NewMode.ToString() + Environment.NewLine
outputTextBox.Text += "Current Correction Mode is " + tip.CurrentCorrectionMode.ToString() + Environment.NewLine
End Sub
void tip_CorrectionModeChanged(object sender, CorrectionModeChangeEventArgs e)
{
outputTextBox.Text += "New Correction Mode is " + e.NewMode + Environment.NewLine;
outputTextBox.Text += "Current Correction Mode is " + tip.CurrentCorrectionMode + Environment.NewLine;
}
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