web-dev-qa-db-ja.com

ASP.NETページのすべてのコントロールを無効にするにはどうすればよいですか?

ページに複数のドロップダウンリストがあり、ユーザーがすべて無効にするというチェックボックスを選択した場合、すべてを無効にしたいと思います。これまでのところ、このコードがあり、機能していません。助言がありますか?

foreach (Control c in this.Page.Controls)
{
    if (c is DropDownList)
        ((DropDownList)(c)).Enabled = false;
}
21
Mohamed

各コントロールには子コントロールがあるため、すべてに到達するには再帰を使用する必要があります。

protected void DisableControls(Control parent, bool State) {
    foreach(Control c in parent.Controls) {
        if (c is DropDownList) {
            ((DropDownList)(c)).Enabled = State;
        }

        DisableControls(c, State);
    }
}

次に、次のように呼び出します。

protected void Event_Name(...) {
    DisableControls(Page,false); // use whatever top-most control has all the dropdowns or just the page control
} // divs, tables etc. can be called through adding runat="server" property
38
John Sheehan

私はこれが古い記事であることを知っていますが、これが私がこの問題を解決した方法です。タイトルどおり「ASP.NETページのすべてのコントロールを無効にするにはどうすればよいですか?」これを実現するためにリフレクションを使用しました。 Enabledプロパティを持つすべてのコントロールタイプで機能します。親コントロール(つまり、フォーム)を渡してDisableControlsを呼び出すだけです。

C#:

private void DisableControls(System.Web.UI.Control control)
{
    foreach (System.Web.UI.Control c in control.Controls) 
    {
        // Get the Enabled property by reflection.
        Type type = c.GetType();
        PropertyInfo prop = type.GetProperty("Enabled");

        // Set it to False to disable the control.
        if (prop != null) 
        {
            prop.SetValue(c, false, null);
        }

        // Recurse into child controls.
        if (c.Controls.Count > 0) 
        {
            this.DisableControls(c);
        }
    }
}

VB:

    Private Sub DisableControls(control As System.Web.UI.Control)

        For Each c As System.Web.UI.Control In control.Controls

            ' Get the Enabled property by reflection.
            Dim type As Type = c.GetType
            Dim prop As PropertyInfo = type.GetProperty("Enabled")

            ' Set it to False to disable the control.
            If Not prop Is Nothing Then
                prop.SetValue(c, False, Nothing)
            End If

            ' Recurse into child controls.
            If c.Controls.Count > 0 Then
                Me.DisableControls(c)
            End If

        Next

    End Sub
29
Justin Clarke

無効にしたいすべてのコントロールをパネルに配置してから、パネルを有効/無効にするのが最も簡単です。

19
bechbd

無効にするページの部分の周りにパネルを配置します。

   < asp:Panel ID="pnlPage" runat="server" >
      ...
   < /asp:Panel >

Page_Loadの内部:

   If Not Me.Page.IsPostBack Then
      Me.pnlPage.Enabled = False
   End If

...または同等のC#。 :o)

9
Tom English

私はASP.NetとHTMLコントロールを使っていました

public void DisableForm(ControlCollection ctrls)
    {
        foreach (Control ctrl in ctrls)
        {
            if (ctrl is TextBox)
                ((TextBox)ctrl).Enabled = false;
            if (ctrl is Button)
                ((Button)ctrl).Enabled = false;
            else if (ctrl is DropDownList)
                ((DropDownList)ctrl).Enabled = false;
            else if (ctrl is CheckBox)
                ((CheckBox)ctrl).Enabled = false;
            else if (ctrl is RadioButton)
                ((RadioButton)ctrl).Enabled = false;
            else if (ctrl is HtmlInputButton)
                ((HtmlInputButton)ctrl).Disabled = true;
            else if (ctrl is HtmlInputText)
                ((HtmlInputText)ctrl).Disabled = true;
            else if (ctrl is HtmlSelect)
                ((HtmlSelect)ctrl).Disabled = true;
            else if (ctrl is HtmlInputCheckBox)
                ((HtmlInputCheckBox)ctrl).Disabled = true;
            else if (ctrl is HtmlInputRadioButton)
                ((HtmlInputRadioButton)ctrl).Disabled = true;

            DisableForm(ctrl.Controls);
        }
    }

このように呼ばれた

DisableForm(Page.Controls);
2
dnxit

これを再帰的に行う必要があります。つまり、コントロールの子コントロールを無効にする必要があります。

protected void Page_Load(object sender, EventArgs e)
{
  DisableChilds(this.Page);
}

private void DisableChilds(Control ctrl)
{
   foreach (Control c in ctrl.Controls)
   {
      DisableChilds(c);
      if (c is DropDownList)
      {
           ((DropDownList)(c)).Enabled = false;
      }
    }
}
1
Canavar
  private void ControlStateSwitch(bool state)
{
    foreach (var x in from Control c in Page.Controls from Control x in c.Controls select x)
        if (ctrl is ASPxTextBox)

            ((ASPxTextBox)x).Enabled = status;

        else if (x is ASPxDateEdit)

            ((ASPxDateEdit)x).Enabled = status;
}

私はlinqアプローチを使用しています。 devExpressを使用するときは、DevExpress.Web.ASPxEditors libを含める必要があります。

1
Coderx07

これは、オプションのパラメーターも取るVB.NETバージョンで、コントロールを有効にするためにも使用できます。

Private Sub SetControls(ByVal parentControl As Control、Optional ByVal enable As Boolean = False)

    For Each c As Control In parentControl.Controls
        If TypeOf (c) Is CheckBox Then
            CType(c, CheckBox).Enabled = enable
        ElseIf TypeOf (c) Is RadioButtonList Then
            CType(c, RadioButtonList).Enabled = enable
        End If
        SetControls(c)
    Next

End Sub
1
hindered

ページでallコントロールを本当に無効にしたい場合、これを行う最も簡単な方法は、フォームの無効を設定することですプロパティをtrueに設定します。

ASPX:

<body>
    <form id="form1" runat="server">
      ...
    </form>
</body>

コードビハインド:

protected void Page_Load(object sender, EventArgs e)
{
    form1.Disabled = true;
}

もちろん、これによりチェックボックスも無効になるため、チェックボックスをクリックしてコントロールを再度有効にすることはできません。

0
M4N