-3

我创建了类,我需要在其中按名称查找 TextBox。我正在使用它,但这里有一个问题,命名空间中不存在 FindName。

object component = this.FindName(componentName);  
TextBox child = component as TextBox;    

我可以在课堂上使用 FindName 方法吗?

4

1 回答 1

1

您应该使用this.FindControl(当然,`this' 是可选的)。

于 2012-06-03T11:21:32.390 回答