WinFrom遍历窗体中的控件以及使用DevExpress容器中的控件

来源:互联网 发布:mac移动硬盘加密软件 编辑:程序博客网 时间:2024/06/06 01:08
//遍历Winform窗体中的控件,窗体中不加容器
foreach (System.Windows.Forms.Control control in this.Controls)
{
    MessageBox.Show(t.Text);
}


//遍历Winform窗体中的控件,窗体中加 LayoutControl
foreach (System.Windows.Forms.Control item in layoutControl1.Controls)
{
     if (item is DevExpress.XtraEditors.TextEdit)
     {
        (item as DevExpress.XtraEditors.TextEdit).Text = "";

     }
}
0 0
原创粉丝点击