如何获得功能中的主动控件?

时间:2019-04-17 05:02:07

标签: c# wpf

如何在接受Textbox控件作为参数的函数中获得活动的TextBox

private void validateTextboxInFocus(object sender, KeyPressEventArgs e, KeyEventArgs b, EventArgs c)
{
    string s = ActiveControl.Name;
    labelGago.Text = s;
    String text = labelGago.Text;
    TextBox tb = TextBox.name = text;
    checkTextboxNull(tb);
}

1 个答案:

答案 0 :(得分:0)

也许您想做的事将通过WPF中的数据绑定来实现。有关更多信息,请参阅this article。通过搜索“ WPF数据绑定”,您将获得更多。

如果需要执行此操作,则应订阅KeyDown的{​​{1}}或TextChanged事件。请参阅this articlethis article。您可以在这些文章中看到代码示例。


+1,如果此答案对您有帮助!