Click here to Skip to main content
15,879,095 members
Articles / Desktop Programming / Windows Forms

Disabling and Re-enabling Control Collections

Rate me:
Please Sign up or sign in to vote.
4.48/5 (6 votes)
3 Jan 2011CPOL4 min read 40.4K   352   12   19
Disabling a control collection, and returning all sub controls to their respective Enabled state when re-enabling the collection

Introduction

This is not a complex article or topic, and attempts to solve an issue I just came across and thought others might be coming by as well. A quick search on everyone's favourite search engine yielded no results, so here I am typing up my own solution.

The issue is quite straight forward - say you're in a scenario where you need to disable a dialog or form because you're waiting for something to happen on another thread, and do not want the user interacting with anything in the meantime.

A good example of this would be a login dialog that asks for credentials to an SQL Server database, and upon clicking on "Ok" the login is attempted. If, for example, the server name specified was wrong (and you're using the default 30 second connection timeout), the user would have to wait for 30 seconds until an error message is displayed.

While the connection is being established, you want to make sure that the user does not continue interacting with your screen and that all controls are effectively disabled during this time. The easy way to do this would be to simply set the form's Enabled flag to false, but that would be nasty.

The thing is - if your application is properly multi threaded, and the connection attempt is happening behind the scenes, your dialog will remain unlocked during this time and the user should be able to move it around. If you disable the entire screen, you can no longer move the form around, which leads the user to believe things are frozen.

The Solution

The solution to this would be quite simple. Just disable all controls on the screen, one by one, and then you're set. Right? Well, almost. You would also have to consider that some controls might already be disabled on the screen, and upon disabling and subsequently re-enabling the screen, you'd want those controls to remain disabled. Going back to the login sample, disabled controls might be the user name and password fields if you're using NT authentication.

Then there's also the issue of some controls possibly containing others (such as group boxes, panels, etc.), and their child controls would have to be considered as well.

To achieve this, a dynamic pair of methods are needed. One, to catalog all controls on your screen (storing their names and Enabled states) and disable them, and another, which uses the catalog built by the first method to put everything back the way it was.

The UIHelper class has these two methods, and they are quite simple.

The GetControlStatesAndDisable() method takes as a single parameter the Controls collection you want to disable (such as Form.Controls). It catalogs and returns the names and Enabled states of all controls in it (and recursively calls itself in order to go down the tree of any sub Controls lists such as for group boxes or panels), and then disables all the controls in this list.

The RestoreControlStates() method is called after your work is complete, and takes as parameters the same Controls collection used earlier as well as the catalog created by the first method.

For example, assuming you're currently within a Form class:

C#
SortedList<string, bool> controlStates = 
	UIHelper.GetControlStatesAndDisable(this.Controls); 
// do your lengthy operations here
UIHelper.RestoreControlStates(mForm1.Controls, controlStates); 

Using the Sample Code

The sample code attached shows how this helper class works. It is comprised of two forms - one containing of several test controls and container controls (with their own child controls), and next to each control is a button letting you enable or disable it.

The second form is used to enable or disable all of form1 by using the helper class and methods. Note that no matter how you enable or disable individual controls on form1, enabling or disabling them through the buttons on form2 (and therefore the helper class) always returns them to their original Enabled states.

The two methods are as follows (and can be found in UIHelper.cs in the attachment to this article):

C#
/// <summary>
/// Get a list of all the controls in the ControlCollection 
/// along with their Enabled state. Disables all those controls after generating
/// a list of their current Enabled state.
/// </summary>
/// <param name="controlCollection">The ControlCollection to scan for controls and 
/// Enabled flags.</param>
/// <returns>List of control names and Enabled states.</returns>
public static SortedList<string, bool> GetControlStatesAndDisable
			(Control.ControlCollection controlCollection)
{
    SortedList<string, bool> controlStates = new SortedList<string, bool>();
 
    // Loop through the controls under the current ControlCollection
    for (int ctr = 0; ctr < controlCollection.Count; ctr++)
    {
        // Store the current control name and its Enabled state
        controlStates.Add(controlCollection[ctr].Name, controlCollection[ctr].Enabled);
 
        // If the current control also has its own ControlCollection 
        // (such as for a group box, panel, etc), loop through
        // its own child controls and extract the same info.
        foreach (KeyValuePair<string, bool> pair in GetControlStatesAndDisable
					(controlCollection[ctr].Controls))
        {
            controlStates.Add(pair.Key, pair.Value);
        }
 
        // Set the current control's Enabled state to false
        controlCollection[ctr].Enabled = false;
    }
    return controlStates;
}
 
/// <summary>
/// Restore each control in the ControlCollection to the original 
/// Enabled state that existed before calling GetControlStatesAndDisable().
/// </summary>
/// <param name="controlCollection">The ControlCollection to scan for controls 
/// and restore their Enabled states.</param>
/// <param name="controlStates">The original Enabled states as retrieved 
/// from a call to GetControlStatesAndDisable().</param>
public static void RestoreControlStates
  (Control.ControlCollection controlCollection, SortedList<string, bool> controlStates)
{
    // Loop through the controls under the current ControlCollection
    for (int ctr = 0; ctr < controlCollection.Count; ctr++)
    {
        if (controlStates.ContainsKey(controlCollection[ctr].Name))
        {
            // Set the current control's Enabled state to what it was 
            // before the call to GetControlStatesAndDisable().
            controlCollection[ctr].Enabled = controlStates[controlCollection[ctr].Name];
        }
 
        // If the current control has its own ControlCollection 
        // (e.g. for a group box, panel, etc) perform the same job
        // on its own child controls.
        RestoreControlStates(controlCollection[ctr].Controls, controlStates);
    }
} 

Points of Interest

I did notice, however, that disabling and re-enabling a container control does in fact retain all the individual Enabled states of its child controls, so there may be no need to traverse the control collections and store (or restore) their individual Enabled states. This also works when enabling or disabling the entire form, but that then freezes the form and makes it look like the app is frozen or has crashed. I have left the recursive code in the sample anyway, just in case it comes in handy for another scenario I have not thought of.

I hope this little tidbit comes in handy to someone else, and as always, comments and suggestions are welcome.

History

  • Jan 01 2010 - Initial publication
  • Jan 02 2010 - Added the UIHelper code into the article

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
Canada Canada
A developer that's been tinkering with computers since he first laid eyes on his buddy's Atari in the mid 80's and messed around with GWBasic and Logo. He now divides his time among his wife, kids, and evil mistress (a term lovingly [ahem...] given to his computer by the wife ...).

For more info, please see my LinkedIn profile: http://www.linkedin.com/pub/david-catriel/44/b01/382

Comments and Discussions

 
GeneralAnother way of preventing the user interaction with the controls Pin
Mihai Maerean4-Jan-11 21:53
Mihai Maerean4-Jan-11 21:53 
GeneralRe: Another way of preventing the user interaction with the controls Pin
David Catriel5-Jan-11 1:27
David Catriel5-Jan-11 1:27 
GeneralRe: Another way of preventing the user interaction with the controls Pin
Mihai Maerean5-Jan-11 1:39
Mihai Maerean5-Jan-11 1:39 
GeneralRe: Another way of preventing the user interaction with the controls Pin
David Catriel5-Jan-11 3:02
David Catriel5-Jan-11 3:02 
GeneralA reason to recurse into containers Pin
Michael19733-Jan-11 14:10
Michael19733-Jan-11 14:10 
GeneralRe: A reason to recurse into containers Pin
David Catriel3-Jan-11 14:50
David Catriel3-Jan-11 14:50 
GeneralDisabling the container Pin
JP van Mackelenbergh2-Jan-11 18:53
JP van Mackelenbergh2-Jan-11 18:53 
GeneralRe: Disabling the container Pin
David Catriel3-Jan-11 1:55
David Catriel3-Jan-11 1:55 
GeneralThoughts Pin
PIEBALDconsult2-Jan-11 15:17
mvePIEBALDconsult2-Jan-11 15:17 
GeneralMy vote of 2 Pin
SledgeHammer012-Jan-11 13:46
SledgeHammer012-Jan-11 13:46 
GeneralRe: My vote of 2 Pin
David Catriel2-Jan-11 14:09
David Catriel2-Jan-11 14:09 
GeneralRe: My vote of 2 Pin
PIEBALDconsult2-Jan-11 14:48
mvePIEBALDconsult2-Jan-11 14:48 
GeneralRe: My vote of 2 Pin
David Catriel3-Jan-11 1:42
David Catriel3-Jan-11 1:42 
GeneralRe: My vote of 2 Pin
SledgeHammer012-Jan-11 17:17
SledgeHammer012-Jan-11 17:17 
GeneralRe: My vote of 2 Pin
David Catriel3-Jan-11 1:52
David Catriel3-Jan-11 1:52 
GeneralPlease show and explain the code Pin
PIEBALDconsult2-Jan-11 9:58
mvePIEBALDconsult2-Jan-11 9:58 
GeneralRe: Please show and explain the code [modified] Pin
David Catriel2-Jan-11 10:12
David Catriel2-Jan-11 10:12 
GeneralRe: Please show and explain the code Pin
PIEBALDconsult2-Jan-11 14:07
mvePIEBALDconsult2-Jan-11 14:07 
GeneralRe: Please show and explain the code Pin
David Catriel2-Jan-11 14:11
David Catriel2-Jan-11 14:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.