Compartir a través de


TextInputPanel.InPlaceStateChanged (Evento)

Actualización: noviembre 2007

Se produce cuando el estado en contexto ha cambiado.

Espacio de nombres:  Microsoft.Ink.TextInput
Ensamblado:  Microsoft.Ink (en Microsoft.Ink.dll)

Sintaxis

'Declaración
Public Event InPlaceStateChanged As EventHandler(Of InPlaceStateChangeEventArgs)
'Uso
Dim instance As TextInputPanel
Dim handler As EventHandler(Of InPlaceStateChangeEventArgs)

AddHandler instance.InPlaceStateChanged, handler
public event EventHandler<InPlaceStateChangeEventArgs> InPlaceStateChanged
public:
 event EventHandler<InPlaceStateChangeEventArgs^>^ InPlaceStateChanged {
    void add (EventHandler<InPlaceStateChangeEventArgs^>^ value);
    void remove (EventHandler<InPlaceStateChangeEventArgs^>^ value);
}
/** @event */
public void add_InPlaceStateChanged (EventHandler<InPlaceStateChangeEventArgs> value)
/** @event */
public void remove_InPlaceStateChanged (EventHandler<InPlaceStateChangeEventArgs> value)
JScript no admite eventos.

Ejemplos

En los siguientes dos ejemplos se muestra cómo usar InPlaceStateChanged.

En el primer ejemplo se asocia un controlador de eventos InPlaceStateChanged, tip_InPlaceStateChanged, al objeto TextInputPanel, tip.

AddHandler tip.InPlaceStateChanged, AddressOf tip_InPlaceStateChanged
tip.InPlaceStateChanged += new EventHandler<InPlaceStateChangeEventArgs>(tip_InPlaceStateChanged);

En el segundo ejemplo se define un controlador del evento InPlaceStateChanged donde el valor de NewState se usa para establecer propiedad TextBox.Text de un control TextBox, outputTextBox.

Sub tip_InPlaceStateChanged(ByVal sender As Object, ByVal e As InPlaceStateChangeEventArgs)
    outputTextBox.Text += "In Place State Changed to " + e.NewState.ToString() + Environment.NewLine
End Sub
void tip_InPlaceStateChanged(object sender, InPlaceStateChangeEventArgs e)
{
    outputTextBox.Text += "In Place State Changed to " + e.NewState + 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

Vea también

Referencia

TextInputPanel (Clase)

TextInputPanel (Miembros)

Microsoft.Ink.TextInput (Espacio de nombres)