添加控件來控制集合繼這兩個線程: How can I create an Array of Controls in C#.NET? Cannot Access the Controls inside an UpdatePanel從更新面板
我現在有這樣的:
ControlCollection[] currentControlsInUpdatePanel = new ControlCollection[upForm.Controls.Count];
foreach (Control ctl in ((UpdatePanel)upForm).ContentTemplateContainer.Controls)
{
currentControlsInUpdatePanel.
}
currentControlsInUpdatePanel不具有添加或插入方法。爲什麼我發佈的第一個鏈接允許該用戶添加到他的收藏中。這是我想要做的,找到我的upForm更新面板中的所有控件。但我沒有看到我可以如何將它添加到我的控件集合中。