TextInputPanel.CorrectionModeChanging-Ereignis
Tritt ein, wenn sich der Korrekturmodus gerade ändert.
Namespace: Microsoft.Ink.TextInput
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Syntax
'Declaration
Public Event CorrectionModeChanging As EventHandler(Of CorrectionModeChangeEventArgs)
'Usage
Dim instance As TextInputPanel
Dim handler As EventHandler(Of CorrectionModeChangeEventArgs)
AddHandler instance.CorrectionModeChanging, handler
public event EventHandler<CorrectionModeChangeEventArgs> CorrectionModeChanging
public:
event EventHandler<CorrectionModeChangeEventArgs^>^ CorrectionModeChanging {
void add (EventHandler<CorrectionModeChangeEventArgs^>^ value);
void remove (EventHandler<CorrectionModeChangeEventArgs^>^ value);
}
/** @event */
public void add_CorrectionModeChanging (EventHandler<CorrectionModeChangeEventArgs> value)
/** @event */
public void remove_CorrectionModeChanging (EventHandler<CorrectionModeChangeEventArgs> value)
JScript unterstützt keine Ereignisse.
Beispiele
In den folgenden beiden Beispielen wird die Verwendung von CorrectionModeChanging demonstriert.
Im ersten Beispiel wird der CorrectionModeChanging-Ereignishandler tip_CorrectionModeChanging an das TextInputPanel-Objekt tip angefügt.
AddHandler tip.CorrectionModeChanging, AddressOf tip_CorrectionModeChanging
tip.CorrectionModeChanging += new EventHandler<CorrectionModeChangeEventArgs>(tip_CorrectionModeChanging);
Im zweiten Beispiel wird ein Ereignishandler für das CorrectionModeChanging-Ereignis definiert. In diesem werden die in OldMode und CurrentCorrectionMode enthaltenen Werte dazu verwendet, die TextBox.Text-Eigenschaft der TextBoxoutputTextBox festzulegen.
Sub tip_CorrectionModeChanging(ByVal sender As Object, ByVal e As CorrectionModeChangeEventArgs)
outputTextBox.Text += "Old Correction Mode is " + e.OldMode.ToString() + Environment.NewLine
outputTextBox.Text += "Current Correction Mode is " + tip.CurrentCorrectionMode.ToString() + Environment.NewLine
End Sub
void tip_CorrectionModeChanging(object sender, CorrectionModeChangeEventArgs e)
{
outputTextBox.Text += "Old Correction Mode is " + e.OldMode + 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