场景是这样的:
说我有一个表格,html表格,表格有几个<td>
控件,每个控件都有一组控件,
那与那个特定的有关<td>
,但不一定包含在<td>
范围内。
例如 :
<asp:Label ID="Lbl_TlTp1" runat="server">
<table>
<tr>
<td ID="TD_1" runat="server">
<asp:Label ID="LBL_1" runat="server" />
</td>
<td>
<asp:TextBox ID="TBX_1" runat="server" />
</td>
</tr>
</table>
现在我希望能够处理提示 Label Lbl_TlTp1
、 DataLabelLBL_1
和 TextBoxTBX_1
作为一个集合或集合,非常灵活(允许枚举等'..)
是通过将它(那个“设置”)作为一个类或对象来封装这些控制项......每个都作为一个成员吗?
我希望以后能够将“集合”作为一个实体来操作
setOfControls Sct1 = new setOfControls()
public void ActAppon(setOfControls section)
{
execProcedure1(section);
foreach(control ctr in section)
{
doTheThing(ctr);
}
}
...etc'
实现此解决方案的方法是什么?