CSkin中有没有类似Winform中的Control的基类,我想遍历所有控件,做个主题文件,思路是这个样的,代码如下:
//代码是Winform原生态的
foreach (Control ctrl in this.Controls)
{
if (ctrl.GetType().Name == "Label") //判断控件类型
{
Label labCtrol = (Label)ctrl; //显示转换控件类型
labCtrol.BackColor = Color.Red; //统一设定样式
}
}
现在不知道这里的 "Control",可以替换为CSkin的那个类,没有找到,希望知道的大神们帮帮我。谢谢
|