码迷,mamicode.com
首页 > Windows程序 > 详细

C#中基础知识积累

时间:2014-11-24 13:13:19      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:sp   for   on   bs   as   tt   nbsp   type   c#   

C#中,获取容器中所有控件

foreach (Control contr in this.palchangepassword.Controls)
            {
                contr.Visible = true;
            }

C#中,获取容器中某种控件

 foreach (Control con in this.Controls)
           {
               if (con.GetType() == typeof(Label))
               {
                   con.Visible = false;
               }
           }

C#中基础知识积累

标签:sp   for   on   bs   as   tt   nbsp   type   c#   

原文地址:http://www.cnblogs.com/FLWL/p/4118333.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!