我有许多通过代码动态创建的文本框。
我希望能够为文本更改的所有文本框分配一个通用事件处理程序,然后在处理程序中确定哪个文本框触发了事件。
我的代码是:
txtStringProperty.TextChanged += TextBoxValueChanged;
private void TextBoxValueChanged(object sender, RoutedEventArgs e)
{
string propertyName = // I would like the name attribute of the textbox here
}
如果您需要更多信息,请告诉我。