我正在尝试通过提供其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);
}
}
希望你的建议
谢谢
答案 0 :(得分:1)
尝试使用它的ID本身禁用该按钮。
btnID.Enabled = false;
并启用
btnID.Enabled = true;