TextInputPanel.CorrectionModeChanged-Ereignis
Tritt ein, wenn der Korrekturmodus geändert wurde.
Namespace: Microsoft.Ink.TextInput
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Syntax
'Declaration
Public Event CorrectionModeChanged As EventHandler(Of CorrectionModeChangeEventArgs)
'Usage
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 unterstützt keine Ereignisse.
Beispiele
In den folgenden beiden Beispielen wird die Verwendung von CorrectionModeChanged demonstriert.
Im ersten Beispiel wird der CorrectionModeChanged-Ereignishandler tip_CorrectionModeChanged an das TextInputPanel-Objekt tip angefügt.
AddHandler tip.CorrectionModeChanged, AddressOf tip_CorrectionModeChanged
tip.CorrectionModeChanged += new EventHandler<CorrectionModeChangeEventArgs>(tip_CorrectionModeChanged);
Im zweiten Beispiel wird ein Ereignishandler für das CorrectionModeChanged-Ereignis definiert. In diesem werden die in NewMode und CurrentCorrectionMode enthaltenen Werte dazu verwendet, die TextBox.Text-Eigenschaft der TextBoxoutputTextBox festzulegen.
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;
}
Plattformen
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0