Click here to Skip to main content
Email Password   helpLost your password?

NestedControlDesigner Screen Shot

Introduction

This article demonstrates how to allow a Control, which is a child of another Control to accept having controls dropped onto it at design time. It is not a large article, there is not much by way of code, and this may not be either the 'official' or best way to do this. It does, however, work, and is stable as far as I have been able to test it.

Background

I have been using C#, mostly on a hobbyist basis, since VS2003. During that time, I have on occasion tried to design controls, of various types, that contained other controls. When these controls were placed onto a Form or Panel, or whatever, it was never possible to drop a TextBox, for example, onto the inner control and have it be added as a child of that control. I searched for a solution to this problem, but never found one. Recently, I was attempting to help somebody in the C# forum when, more by luck than judgment, I found a methodology which I think solves the problem. After I finished helping the other CPian, I knocked up a very quick demonstration and wrote this article. I wrote it partly because I was pleased to have finally found a resolution to the problem, but mostly because I had not seen an example of this technique anywhere and thought it important to get it out there.

Using the Code

The demo application that goes with this article consists of the Application Main Form, and two Control Libraries. The first of these NestedControlDesignerLibrary, contains the code for TestControl and TestControlDesigner.

TestControl consists of a UserControl which in turn contains two Panel controls. One docked to the top contains a Label to act as a caption for the whole control, and the second, which is the one that I have elected to enable to accept child controls, fills the remainder of the space.

Here is the code for TestControl.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace NestedControlDesignerLibrary
{
    /// <summary>
    /// A test Control to demonstrate allowing nested Controls
    /// to accept child controls at design time.
    /// </summary>
    [
    Designer(typeof(NestedControlDesignerLibrary.Designers.TestControlDesigner))
    ]
    public partial class TestControl : UserControl
    {
        public TestControl()
        {
            InitializeComponent();
        }

        #region TestControl PROPERTIES ..........................
        /// <summary>
        /// Surface the Caption to allow the user to 
        /// change it
        /// </summary>
        [
        Category("Appearance"),
        DefaultValue(typeof(String), "Test Control")
        ]
        public string Caption
        {
            get
            {
                return this.lblCaption.Text;
            }

            set
            {
                this.lblCaption.Text = value;
            }
        }

        [
        Category("Appearance"),
        DesignerSerializationVisibility(DesignerSerializationVisibility.Content)
        ]
        /// <summary>
        /// This property is essential to allowing the designer to work and
        /// the DesignerSerializationVisibility Attribute (above) is essential
        /// in allowing serialization to take place at design time.
        /// </summary>
        public Panel WorkingArea
        {
            get
            {
                return this.pnlWorkingArea;
            }
        }
        #endregion
    }
}

There isn't much to it, but then, it doesn't actually do very much; as a control, it's pretty useless. Its only purpose is as a demonstration of this methodology.

There are two important parts:

The Designer code:

namespace NestedControlDesignerLibrary.Designers
{
    public class TestControlDesigner : ParentControlDesigner
    {
        public override void Initialize(System.ComponentModel.IComponent component)
        {
            base.Initialize(component);

            if (this.Control is TestControl)
            {
                this.EnableDesignMode((
                   (TestControl)this.Control).WorkingArea, "WorkingArea");
            }
        }
    }
}

That's it. I find it so frustrating that a problem that has bugged me for years can be solved with so little code. I am in no way an expert on Designers, but even I can understand this. The TestControlDesigner inherits from ParentControlDesigner, which according to MSDN is the:

Base designer class for extending the design mode behavior of a Control that supports nested controls.

As we are dealing with nested controls here, this seemed appropriate. When the designer initializes, it calls Initialize on its base class, to ensure default behaviours take place, and then it calls EnableDesignMode with the control nominated to receive the dropped controls at design time, WorkingArea, in this case. The host control needs to be cast to the correct type of control since designers, in general, store this information as a reference to a Control and the name used to expose the control to the user as a string. The call to EnableDesignMode can be repeated for each child control that needs design time capability. For more information about this, see EnableDesignMode on MSDN.

The code and the control presented above has a significant drawback The WorkArea behaves like panel1 and panel2 of a SplitContainer in the Properties window. That means that if you expand it, you get to see all of its public properties. This includes the Dock property, which for this control makes no sense, since WorkArea being docked is a fundamental part of the design, and to allow the user to alter that is just plain daft.

The more experienced of you will know how to overcome this problem, but for the newer coders, I have created an ImprovedTestControl in the ImprovedNestedControlDesignLibrary. The only difference from the vanilla control is that in the improved version, WorkArea is a User Control that inherits from Panel, rather than a simple Panel. The reason that I chose to do this is that it enabled me to give it its own Designer, which is the technique that I elected to use to hide the unwanted properties. There are loads of other ways of doing this, and several excellent articles on how to do it can be found here on CodeProject. Enter 'hiding inherited properties' into the search box on the Home page and hit Enter. The first article I found was Hiding Inherited Properties from the PropertyGrid by Shaun Wilde, deals specifically with this problem; the others do so to a greater or lesser extent. Have a root round and find a method that you like for use in your own code.

Anyway, here is the code for the new WorkArea:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ImprovedNestedControlDesignerLibrary
{
    [
    Designer(typeof(ImprovedNestedControlDesignerLibrary.Designers.WorkingAreaDesigner))
    ]
    public partial class WorkingAreaControl : Panel
    {
        public WorkingAreaControl()
        {
            InitializeComponent();
            base.Dock = DockStyle.Fill;
        }
    }
}

As stated before, this control descends from Panel.

Because of the way I have hidden the Dock property, it will not be available when designing the ImprovedTestControl, so it is necessary to set it appropriately in the constructor. That's all there is, except for the Designer.

Here's the code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms.Design;

namespace ImprovedNestedControlDesignerLibrary.Designers
{
    public class WorkingAreaDesigner : ScrollableControlDesigner
    {
        protected override void PreFilterProperties(
                  System.Collections.IDictionary properties)
        {
            properties.Remove("Dock");

            base.PreFilterProperties(properties);
        }
    }
}

All that this designer does is to override the PreFilterProperties method. This method has as its only parameter a Dictionary of all of the public properties of its control. Therefore, all that is required is to remove any property that you don't want to show up in the Properties window and pass on the, now slimmer, Dictionary to the base method. Job done!

The demo application is a plain form with one TestControl and one ImprovedTestControl.

Once the TestControl was added, I put a ComboBox on it and gave it some items. For the ImprovedTestControl, I added a Label and a ListBox, again with some items.

Points of Interest

I learned several interesting things whilst writing this article. Not least, I learned that helping others can help you. I also had confirmed to me how poor the Microsoft documentation is for Designer topics.

Here are some links to articles on the Windows Forms design process:

I do hope that some of you find this useful as I was ridiculously pleased to have found a solution to this problem.

History

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralThank you very much!
Jonyboy C#
23:05 26 Jan '10  
Helped me very much. Thanks again.
GeneralRe: Thank you very much!
Henry Minute
1:49 27 Jan '10  
I am pleased that I was able to help someone.
It was very kind of you to take the time to write.

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

GeneralI actualy thought there was an Attribute you could use to allow this
Sacha Barber
1:33 6 Jul '09  
I actualy thought there was an Attribute you could use to allow this, damned if I can remember what it was called though.

Sacha Barber
  • Microsoft Visual C# MVP 2008/2009
  • Codeproject MVP 2008/2009
Your best friend is you.
I'm my best friend too. We share the same views, and hardly ever argue

My Blog : sachabarber.net

GeneralRe: I actualy thought there was an Attribute you could use to allow this
Henry Minute
1:41 6 Jul '09  
You may well be correct, although I have never found it during periodic searches, through the corners and alleyways that is the .Net Framework.

If you do remember, please share.

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

GeneralRe: I actualy thought there was an Attribute you could use to allow this
Sacha Barber
1:57 6 Jul '09  
Yeah I just had a hunt about with Reflector, can't see anything obvious. There was definately an attribute to support this, very sad I cant find it. Grrr.

Sacha Barber
  • Microsoft Visual C# MVP 2008/2009
  • Codeproject MVP 2008/2009
Your best friend is you.
I'm my best friend too. We share the same views, and hardly ever argue

My Blog : sachabarber.net

GeneralRe: I actualy thought there was an Attribute you could use to allow this
Sacha Barber
2:12 6 Jul '09  
This may not be exactly what you are doing, I just scanned your article, sorry. But this is what I was thinking of to give custom UserControls the ability to act like Containers

http://support.microsoft.com/kb/813450[^]

Its all down to the
Designer("System.Windows.Forms.Design.ParentControlDesigner, System.Design", typeof(IDesigner))] 


usage

Sacha Barber
  • Microsoft Visual C# MVP 2008/2009
  • Codeproject MVP 2008/2009
Your best friend is you.
I'm my best friend too. We share the same views, and hardly ever argue

My Blog : sachabarber.net

GeneralRe: I actualy thought there was an Attribute you could use to allow this
Henry Minute
7:48 6 Jul '09  
Yes that works for a simple UserControl, but not for a Control which is a child of that UserControl. Which is why the 'Nested' in the article title.

I thought for some time in a vain attempt to come up with a more descriptive/exciting title, but ran out of talent. I probably thought about that for longer than it took to write the whole thing. Perhaps I'll make myself a T-shirt with 'I wrote an article, and all I got for a title was....' etc. Smile

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

GeneralRe: I actualy thought there was an Attribute you could use to allow this
Sacha Barber
10:19 6 Jul '09  
Yeah perhaps I should have read your article text 1st. Sorry.

Sacha Barber
  • Microsoft Visual C# MVP 2008/2009
  • Codeproject MVP 2008/2009
Your best friend is you.
I'm my best friend too. We share the same views, and hardly ever argue

My Blog : sachabarber.net

GeneralCool, I found this answer a while back too :)
leppie
6:46 4 Jul '09  
http://stackoverflow.com/questions/594808/adding-design-time-support-for-a-nested-container-in-a-custom-usercontrol-winfor[^]

xacc.ide
IronScheme - 1.0 beta 3 - out now!
((lambda (x) `((lambda (x) ,x) ',x)) '`((lambda (x) ,x) ',x))

GeneralRe: Cool, I found this answer a while back too :)
Henry Minute
6:55 4 Jul '09  
Pooh!
There was me thinking I was the first. Smile

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

GeneralRe: Cool, I found this answer a while back too :)
leppie
6:57 4 Jul '09  
Henry Minute wrote:
There was me thinking I was the first.


Great adventure though! Man, I looked in so many places before I found it. And then, it, was, too easy!

xacc.ide
IronScheme - 1.0 beta 3 - out now!
((lambda (x) `((lambda (x) ,x) ',x)) '`((lambda (x) ,x) ',x))

GeneralRe: Cool, I found this answer a while back too :)
Henry Minute
7:04 4 Jul '09  
leppie wrote:
Great adventure though! Man, I looked in so many places before I found it. And then, it, was, too easy!


Ain't that the truth. It is annoyingly easy.

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”


Last Updated 2 Jul 2009 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2010