C# winForm 遍历容器控件内所有Label,修改其背景色

2021-04-15 02:28

阅读:519

标签:c#   str   遍历   win   tostring   control   controls   span   inf   

            //容器控件为tableLayoutPanel1
       foreach (Control label in tableLayoutPanel1.Controls)
            {
                if (label.GetType().ToString() == "System.Windows.Forms.Label")
                {
                    label.BackColor = Color.Red;
                }
            }

 

C# winForm 遍历容器控件内所有Label,修改其背景色

标签:c#   str   遍历   win   tostring   control   controls   span   inf   

原文地址:https://www.cnblogs.com/nb08611033/p/8890960.html


评论


亲,登录后才可以留言!