我有文本框,当被触发时我正在更改其中的文本,lostFocus
但这也会触发textChanged
我正在处理的事件,但我不希望它在这种情况下被触发,我怎样才能在这里禁用它?
更新:
这个想法bool
很好,但我有几个文本框,我对它们都使用相同的事件,所以它不能完全按照我想要的方式工作。
现在它正在工作!:
private bool setFire = true;
private void mytextbox_LostFocus(object sender, RoutedEventArgs e)
{
if (this.IsLoaded)
{
System.Windows.Controls.TextBox textbox = sender as System.Windows.Controls.TextBox;
if(textbox.Text.ToString().Contains('.'))
{
textbox.Foreground = new SolidColorBrush(Colors.Gray);
textbox.Background = new SolidColorBrush(Colors.White);
setFire = false;
textbox.Text = "something else";
setFire = true;
}
}
}
private void mytextbox_TextChanged(object sender, TextChangedEventArgs e)
{
if ((this.IsLoaded) && setFire)
{
System.Windows.Controls.TextBox textbox = sender as System.Windows.Controls.TextBox;
if(textbox.Text.ToString().Contains('.'))
{
textbox.Foreground = new SolidColorBrush(Colors.White);
textbox.Background = new SolidColorBrush(Colors.Red);
}
}
setFire = true;
}
我在编辑文本后设法将其bool
重新打开true
,它可以正常工作,谢谢大家:]