Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8210427
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T10:04:10+00:00 2026-06-07T10:04:10+00:00

Currently I have some buttons on my Winform that need to be disabled/enabled at

  • 0

Currently I have some buttons on my Winform that need to be disabled/enabled at various points depending what the user clicks.

The first draft I made was

button1.Enabled = false;
button2.Enabled = false;

To disable 2 buttons, which is obviously a horrible way of doing this, as there are currently a lot more than 2 and possibly more to come as this is still in development. So I need to have a way of easily changing a selection of buttons on the form.

Then I came up with this

private enum Buttons { Button1, Button2 } // etc with all buttons - that are named :)

private void DisableButtons(params Buttons[] buttons)
{
    foreach (Buttons button in buttons)
    {
        switch (button)
        {
            case Buttons.Button1:
                button1.Enabled = false;
                break;
            case Buttons.Button2:
                button2.Enabled = false;
                break;
        }
    }
}

Which I still wasn’t overly happy with. I could scrap the switch-case and foreach for

private void DisableButtons(params Buttons[] buttons)
{
    button1.Enabled = buttons.Contains(Buttons.Button1) ? false : true;
}

for each button but I just think there must be a better way.

Any ideas on how I could do this more efficiently?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T10:04:11+00:00Added an answer on June 7, 2026 at 10:04 am

    You can shorten your last code line to:

    button1.Enabled = !buttons.Contains(Buttons.Button1);
    

    Alternative solution

    Or you can use the Tag property of each button to set a enum value for each button.

    button1.Tag = Buttons.Button1;
    button2.Tag = Buttons.Button2;
    button3.Tag = Buttons.Button3;
    // etc
    

    Than you can do it for all buttons in a for loop:

    var buttons = <all buttons, todo>
    foreach (var button in buttons) {
        button.Enabled = !button.Contains((Buttons)button.Tag));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have some stuff that may be exported into various formats. Currently we have
I currently have some action associated with when the user types something in a
I have some python code that currently performs expensive computation by performing the computation
I have some code that currently checks for minimum and maximum lentgh. I want
I currently have a table structure that looks something like this(some details omitted): ColumnName
I currently have some toolbar buttons with a small arrow on the side (
I currently have a div layer that includes some javascript (to display a button).
I am converting some Silverlight XAML into WPF. I currently have a user control
I have a user control that generates a series of arrow buttons. I want
I currently have an activity with some buttons. In my xml, buttons are defined

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.