TextBox.TextChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando cambia el contenido en el cuadro de texto.
public:
virtual event TextChangedEventHandler ^ TextChanged;
// Register
event_token TextChanged(TextChangedEventHandler const& handler) const;
// Revoke with event_token
void TextChanged(event_token const* cookie) const;
// Revoke with event_revoker
TextBox::TextChanged_revoker TextChanged(auto_revoke_t, TextChangedEventHandler const& handler) const;
public event TextChangedEventHandler TextChanged;
function onTextChanged(eventArgs) { /* Your code */ }
textBox.addEventListener("textchanged", onTextChanged);
textBox.removeEventListener("textchanged", onTextChanged);
- or -
textBox.ontextchanged = onTextChanged;
Public Custom Event TextChanged As TextChangedEventHandler
<TextBox TextChanged="eventhandler"/>