I've created a container control based object that needs a design time
editor. I've created one based on ControlDesigner but there are several
problems:
My control no longer behaves as a container control (it will not allow me to
place objects within it).
The designer allows me to change a point in the control, however, the point
can be outside the control, and PaintAddornements clips to the control's
rectangle.
Finaly, the control needs to have aspects of transparency which work fine at
runtime but HORRIBLE at design time
is there any way to refresh the whole form after a change is made with the
designer?
is there a way to change PaintAddornements to remove the cliping?
and how do i make a designer for container controls?

Signature
~Mike Powell,
software designer for Ramuseco ltd
www.ramuseco.com
Francisco Padron - 28 May 2005 19:09 GMT
You need to derive your designer from ParentControlDesigner.
ContainerControl has ScrollableControlDesigner as the default designer which
derives from ParentControlDesigne, by deriving your designer from
ControlDesigner you are loosing all this functionality.

Signature
Francisco Padron
www.chartfx.com
> I've created a container control based object that needs a design time
> editor. I've created one based on ControlDesigner but there are several
[quoted text clipped - 10 lines]
> is there a way to change PaintAddornements to remove the cliping?
> and how do i make a designer for container controls?