TextBox.TextChanging Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre de forma síncrona quando o texto na caixa de texto começa a ser alterado, mas antes de ser renderizado.
// Register
event_token TextChanging(TypedEventHandler<TextBox, TextBoxTextChangingEventArgs const&> const& handler) const;
// Revoke with event_token
void TextChanging(event_token const* cookie) const;
// Revoke with event_revoker
TextBox::TextChanging_revoker TextChanging(auto_revoke_t, TypedEventHandler<TextBox, TextBoxTextChangingEventArgs const&> const& handler) const;
public event TypedEventHandler<TextBox,TextBoxTextChangingEventArgs> TextChanging;
function onTextChanging(eventArgs) { /* Your code */ }
textBox.addEventListener("textchanging", onTextChanging);
textBox.removeEventListener("textchanging", onTextChanging);
- or -
textBox.ontextchanging = onTextChanging;
Public Custom Event TextChanging As TypedEventHandler(Of TextBox, TextBoxTextChangingEventArgs)
<TextBox TextChanging="eventhandler"/>
Tipo de evento
Exemplos
Este exemplo mostra como lidar com o evento TextChanging para implementar o preenchimento automático simples para um TextBox.
<!-- Text box in MainPage.xaml -->
<TextBox x:Name="textBox" TextChanging="textBox_TextChanging"
Width="200" Height="32"/>
public sealed partial class MainPage : Page
{
// Boolean to keep track of whether or not you should ignore the next TextChanged event.
// This is needed to support the correct behavior when backspace is tapped.
public bool m_ignoreNextTextChanged = false;
// Sample list of strings to use in the autocomplete.
public string[] m_options = { "microsoft.com", "dev.windows.com", "msn.com", "office.com", "msdn.microsoft.com" };
public MainPage()
{
this.InitializeComponent();
}
private void textBox_TextChanging(TextBox sender, TextBoxTextChangingEventArgs args)
{
// Needed for the backspace scenario.
if (m_ignoreNextTextChanged)
{
m_ignoreNextTextChanged = false;
return;
}
// All other scenarios other than the backspace scenario.
// Do the auto complete.
else
{
string s = textBox.Text;
if (s.Length > 0)
{
for (int i = 0; i < m_options.Length; i++)
{
if (m_options[i].IndexOf(s) >= 0)
{
if (s == m_options[i])
break;
textBox.Text = m_options[i];
textBox.Select(s.Length, m_options[i].Length - s.Length);
break;
}
}
}
}
}
protected override void OnKeyDown(KeyRoutedEventArgs e)
{
if (e.Key == Windows.System.VirtualKey.Back
|| e.Key == Windows.System.VirtualKey.Delete)
{
m_ignoreNextTextChanged = true;
}
base.OnKeyDown(e);
}
}
Comentários
Para obter dados de evento, consulte TextBoxTextChangingEventArgs.
O evento TextChanging ocorre de forma síncrona antes que o novo texto seja renderizado. Por outro lado, o evento TextChanged é assíncrono e ocorre depois que o novo texto é renderizado.
Quando o evento TextChanging ocorre, a propriedade Text já reflete o novo valor (mas não é renderizado na interface do usuário). Normalmente, você manipula esse evento para atualizar o valor de Texto e a seleção antes que o texto seja renderizado. Isso impede a cintilação de texto que pode acontecer quando o texto é renderizado, atualizado e renderizado rapidamente.
Observação
Esse é um evento síncrono que pode ocorrer em momentos em que as alterações na árvore visual XAML não são permitidas, como durante o layout. Portanto, você deve limitar o código dentro do manipulador de eventos TextChanging principalmente para inspecionar e atualizar a propriedade Text . Tentar executar outras ações, como mostrar um pop-up ou adicionar/remover elementos da árvore visual, pode causar erros potencialmente fatais que podem levar a uma falha. Recomendamos que você execute essas outras alterações em um manipulador de eventos TextChanged ou execute-as como uma operação assíncrona separada.