在我的应用程序中,我在运行时创建了一个文本框,这是代码
TextBox bt = new TextBox();
bt.Name = "population_textbox";
bt.Height = 20;
bt.SetValue(Grid.ColumnProperty, 1);
bt.SetValue(Grid.RowProperty, 0);
temp_grid.Children.Add(bt);
那么,如何在用户输入内容并输入后获取此文本框的文本。不知道怎么弄,我试试
var tb = (FrameworkElement)this.FindName("population_textbox") as TextBox;
Console.Write(tb.Text);
这是错误警报:
Exception has been thrown by the target of an invocation.