.net 如何foreach guna或bunifu框架的循环控件?

zdwk9cvp  于 2023-01-06  发布在  .NET
关注(0)|答案(1)|浏览(146)

如何为guna或bunifu框架foreach循环控件?我想检查一个文本框是否为空。

private void btn_save_Click(object sender, EventArgs e)
{
            foreach (Control obj in Panel.Controls)
            {
                //if using normal TextBox it work..
                if (obj is Guna2TextBox)
                {
                    if (obj.Text == "")
                    {
                        MessageBox.Show("Action connot be perform. All fields are required to be fill up.");
                        return;
                    }
                }
            }
}
piah890a

piah890a1#

使用Guna面板代替普通面板,然后它应该工作(尝试使用最新的Guna版本)
我使用该代码进行测试:

foreach (Control obj in guna2Panel1.Controls)
            {
                //if using normal TextBox it work..
                if (obj is Guna2TextBox)
                {
                    if (obj.Text == "")
                    {
                        MessageBox.Show("Action connot be perform. All fields are required to be fill up.");
                        return;
                    }
                }
            }

相关问题