TextInputPanel.CorrectionModeChanging (Evento)
Actualización: noviembre 2007
Se produce cuando el modo de corrección está a punto de cambiar.
Espacio de nombres: Microsoft.Ink.TextInput
Ensamblado: Microsoft.Ink (en Microsoft.Ink.dll)
Sintaxis
'Declaración
Public Event CorrectionModeChanging As EventHandler(Of CorrectionModeChangeEventArgs)
'Uso
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 no admite eventos.
Ejemplos
En los siguientes dos ejemplos se muestra cómo usar CorrectionModeChanging.
En el primer ejemplo se asocia un controlador de eventos CorrectionModeChanging, tip_CorrectionModeChanging, al objeto TextInputPanel,tip.
AddHandler tip.CorrectionModeChanging, AddressOf tip_CorrectionModeChanging
tip.CorrectionModeChanging += new EventHandler<CorrectionModeChangeEventArgs>(tip_CorrectionModeChanging);
En el segundo ejemplo se define un controlador del evento CorrectionModeChanging donde los valores que contienen OldMode y CurrentCorrectionMode se usan para establecer propiedad TextBox.Text de un control TextBox, outputTextBox.
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;
}
Plataformas
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.
Información de versión
.NET Framework
Compatible con: 3.0