基类类表单方法访问派生表单控件

时间:2010-11-01 04:44:08

标签: c#

我有一个使用MANY对话框的项目。每个对话框执行大部分相同的代码,业务策略是一个问题。出于这个原因,我创建了一个方法来访问表单上的控件。

foreach (Control control in this.Controls)

我需要访问DERIVED表单的控件,因为这些控件会发生变化。我想通过调用基类方法来实现。这可能吗?

非常感谢提前。

1 个答案:

答案 0 :(得分:0)

似乎你想使用超类中声明的方法遍历扩展类的控制结构?

Every container control on the page, and the page itself, has a Controls collection that you can use to get to individual controls.

这可能会为您提供所需的帮助C#, recursively notify child controls