I am trying to make my own user control and have almost finished it, just trying to add some polish. I would like the option in the designer to "Dock in parent container". Does anyone know how to do this I can't find an example. I think it has something to do with a Docking Attribute.
|
|
I order to achieve this you will need to implement a couple of classes; first you will need a custom ControlDesigner and then you will need a custom DesignerActionList. Both are fairly simple. The ControlDesigner:
The DesignerActionList:
Finally, you will need to attach the designer to your control:
Brief explanation The control has a The custom action list contains a This will display the little "action arrow" close to the upper right corner of the control in the designer, and clicking the arrow will pop up the task menu. |
||||
|
|
|
I would also suggest looking at the DockingAttribute.
This also displays the 'action arrow' on the upper right corner of the control. This option is available as far back as .NET 2.0, and it is far simpler if all you're looking for is the 'Dock/Undock in Parent Container' function. The Designer classes are massive overkill in that case. It also gives the options of
|
|||
|
|
|
If your control inherits from |
|||
|
|