当前位置: 代码迷 >> ASP.NET >> C#有没有相仿with之类的语句
  详细解决方案

C#有没有相仿with之类的语句

热度:6779   发布时间:2013-02-25 00:00:00.0
C#有没有类似with之类的语句
C#有没有类似with之类的语句
我有一个panel,里面有50个webBrowser.我想同时给他们的Navigete赋值.有没有好的方法.

------解决方案--------------------------------------------------------
或:

foreach(Control ctr in this.Panel.Controls)
{
WebBrowser wb = ctr as WebBrowser;
if (wb!=null)
{
wb.Navigete...
}
}
  相关解决方案