Control.ImeModeChanged Evento

Definición

Se produce cuando ha cambiado la propiedad ImeMode.

public:
 event EventHandler ^ ImeModeChanged;
public event EventHandler ImeModeChanged;
member this.ImeModeChanged : EventHandler 
Public Custom Event ImeModeChanged As EventHandler 

Tipo de evento

EventHandler

Ejemplos

El ejemplo de código siguiente es un controlador de eventos que se ejecuta cuando cambia el valor de la Text propiedad. La Control clase tiene varios métodos con el patrón de nombre PropertyNameChanged que se generan cuando cambia el valor PropertyName correspondiente (PropertyName representa el nombre de la propiedad correspondiente).

En el ejemplo de código siguiente se cambia la ForeColor propiedad de un TextBox objeto que muestra los datos de moneda. En el ejemplo se convierte el texto en un número decimal y se cambia a ForeColor Color.Red si el número es negativo y a Color.Black si el número es positivo. En este ejemplo se requiere que tenga un Form objeto que contenga .TextBox

private:
   void currencyTextBox_TextChanged( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      try
      {
         // Convert the text to a Double and determine if it is a negative number.
         if ( Double::Parse( currencyTextBox->Text ) < 0 )
         {
            // If the number is negative, display it in Red.
            currencyTextBox->ForeColor = Color::Red;
         }
         else
         {
            // If the number is not negative, display it in Black.
            currencyTextBox->ForeColor = Color::Black;
         }
      }
      catch ( Exception^ ) 
      {
         // If there is an error, display the text using the system colors.
         currencyTextBox->ForeColor = SystemColors::ControlText;
      }
   }
private void currencyTextBox_TextChanged(object sender, EventArgs e)
{
   try
   {
      // Convert the text to a Double and determine if it is a negative number.
      if(double.Parse(currencyTextBox.Text) < 0)
      {
         // If the number is negative, display it in Red.
         currencyTextBox.ForeColor = Color.Red;
      }
      else
      {
         // If the number is not negative, display it in Black.
         currencyTextBox.ForeColor = Color.Black;
      }
   }
   catch
   {
      // If there is an error, display the text using the system colors.
      currencyTextBox.ForeColor = SystemColors.ControlText;
   }
}
Private Sub currencyTextBox_TextChanged(sender As Object, _ 
  e As EventArgs) Handles currencyTextBox.TextChanged
   Try
      ' Convert the text to a Double and determine if it is a negative number.
      If Double.Parse(currencyTextBox.Text) < 0 Then
         ' If the number is negative, display it in Red.
         currencyTextBox.ForeColor = Color.Red
      Else
         ' If the number is not negative, display it in Black.
         currencyTextBox.ForeColor = Color.Black
      End If
   Catch
      ' If there is an error, display the text using the system colors.
      currencyTextBox.ForeColor = SystemColors.ControlText
   End Try
End Sub

Comentarios

Este evento se genera si la ImeMode propiedad cambia mediante una modificación mediante programación o a través de la interacción.

Los controles que no admiten administradores de métodos de entrada nunca generarán este evento.

Para obtener más información sobre el manejo de eventos, consulte controlar y provocar eventos.

Se aplica a

Consulte también