-1

我正在尝试通过提供按钮的 ID 来启用按钮,因为我为页面上的所有按钮完成了 diabling 我们如何为具有 ID 的特定按钮执行我的代码,

public static void EnableInsertBtn(Control parent)
{

    foreach (Control B in parent.Controls)
    {
        if (B.GetType() == typeof(Button))
        {
            ((Button)(B)).Enabled = false;

        }
        if (B.HasControls())
        {
            EnableInsertBtn(B);
        }

    }

希望你的建议

谢谢

4

1 回答 1

1

尝试使用其 ID 本身禁用该按钮。

btnID.Enabled = false;

并启用

btnID.Enabled = true;
于 2013-04-30T10:32:59.450 回答