I have a custom control (inheriting from control; targetting .net compact framework v2) that has a bitmap property.
currently an instance of the control on the form designer will only paint the selected background color and writes the namespace.control.name overtop.
How can I have the image be rendered by the form designer after its selected in the property editor?
edit: The control is fairly basic but I am overriding onpaint and onpaintbackground
edit2: In an effort to determine the cause I wrote a much simpler control. It's just a bitmap property and a call to graphics.drawimage in onpaint (so a cheap imagebutton). This too fails to render. I even included a check to make sure it wasn't trying to render a null image and never refreshing or anything, but no luck