I'm writing a User Control. One of the properties that I have is a URL for an image. I'm using the ImageUrlEditor, so in design time the user could select the image, that will represent the URL. But it doesn't show anything, I does not give me the option to select an image. So I guess I'm out of ideas at this point.
This is the code I'm using:
[
Browsable(true)][Category("MyConfiguration")]
[
Editor(typeof(ImageUrlEditor), typeof(UITypeEditor))]public string IconImageURL
{
get { return _iconImageURL; }
set { _iconImageURL = value; }
}