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 6318353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T15:37:45+00:00 2026-05-24T15:37:45+00:00

Currently in my program in about 10 control event handlers I have this code:

  • 0

Currently in my program in about 10 control event handlers I have this code:

        if (!mapLoaded)
            return;

When I load a map through the open file dialog I set mapLoaded to true. Another way to do this would be to just disable all the controls for startup and after loading a map to enable all the controls. Unfortunately there are 30+ controls and this is just 30 lines of..

a.Enabled = true;
b.Enabled = true;
c.Enabled = true;

I can’t really do a foreach loop through this.Controls either because some of the controls are menustrip items, toolstrip items, panel items, scrollbars, splitters, et cetera and that loop doesn’t cover that.

Ideally there would be a way to set every control’s enabled property to true in a single and simple loop but I’m not sure of how to do that. Any ideas SO?

  • 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-05-24T15:37:45+00:00Added an answer on May 24, 2026 at 3:37 pm

    Use data binding:

    1. Change mapLoaded into a property that notifies observers when its value has changed…

      public bool MapLoaded
      {
          get
          {
              return mapLoaded;
          }
          set
          {
              if (value != mapLoaded)
              {
                  mapLoaded = value;
                  MapLoadedChanged(this, EventArgs.Empty);
              }
          }
      }
      private bool mapLoaded;
      
      public event EventHandler MapLoadedChanged = delegate {};
      // ^ or implement INotifyPropertyChanged instead
      
    2. Data-bind your controls’ Enabled property to MapLoaded. You can set up the data bindings either using the Windows Forms designer, or using code, e.g. right after InitializeComponent();:

      a.DataBindings.Add("Enabled", this, "MapLoaded");
      b.DataBindings.Add("Enabled", this, "MapLoaded");
      c.DataBindings.Add("Enabled", this, "MapLoaded");
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently developing a program that uses C#'s Dictionary container (specifically, SortedDictionary). This
Currently when I open a file with my program I can select files on
I currently have a small Java program which I would like to run both
I have some code that does custom drawing. Basically it is form fill program
The question An open source program uses CVS for version control. I would like
I am currently trying to write a program to store data about people into
Currently I run my program like this: java program arg1 arg2 arg3... There are
I currently program in Futures, and I'm rather curious about actors. I'd like to
My C++ program currently invokes curl through a pipe ( popen(curl ...) ) to
I have gotten a program Im working on to load some pictures and display

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.