我仍在学习如何使用事件处理程序。
我想要的是:当我单击 txtMonday 获得焦点时,然后单击删除按钮以清除此选定的文本框。
问题是:当我单击所选文本框的删除按钮时,所有未选中的文本框都被清除。我只想删除选定的文本框。如何解决这个问题呢?非常感谢您的代码示例。谢谢!我正在使用 WPF 和 C#。
private void btnRemoveClick(object sender, RoutedEventArgs e)
{
TextBox text = new TextBox();
text.GotFocus += new RoutedEventHandler(txtMonday_GotFocus);
txtMonday.Clear();
text.GotFocus += new RoutedEventHandler(txtTuesday_GotFocus);
txtTuesday.Clear();
}
private void txtMonday_GotFocus(object sender, RoutedEventArgs e)
{
}
private void txtTuesday_GotFocus(object sender, RoutedEventArgs e)
{
}