You do it like this:
[Editor(typeof(System.Web.UI.Design.ImageUrlEditor),
typeof(System.Drawing.Design.UITypeEditor))]
public virtual string MyImageUrl
{
get
{
...
}
set
{
...
}
}
Here's more info and a more detailed example:
http://SteveOrr.net/articles/InheritAndExtend.aspx

Signature
I hope this helps,
Steve C. Orr
MCSD, MVP, CSM
http://SteveOrr.net
> Hi guys!
>
[quoted text clipped - 12 lines]
>
> Steve.
steve_barker333@hotmail.com - 02 Nov 2006 01:21 GMT
Hi Steve!
Thanks for your help!
Your code works fine when you view the UserControl in it's own
designer, but when you put the UserControl on a web-form, the
properties are not working correctly. Have I missed something?!
Cheers,
Steve.
> You do it like this:
>
[quoted text clipped - 37 lines]
> >
> > Steve.