Would I need to do the four borders?
I'm not sure exactly what you are asking, but if you want the four borders, you can inherit from the control and you'll get all of its components, ready to be modified.
But if you don't, then don't inherit. We've found that when you inherit from a control, you cannot delete any of the inherited components, at least we couldn't seem to get that to work. The properties can be changed, so you could hide them, but what's the point of inheriting things you don't want? In that case, you can just find the source code of it in its XML file, copy that and paste it into a new control, then delete what you want.
I believe all controls have a texture property, although only some actually use it, specifically the panels. So if you set the texture to point to an image file, then you can set the size and position (in texture coordinates), and optionally the color for it in the appropriate presentationSettings fields, doing so at least for the default.
One little wrinkle if you haven't used them yet, is that regardless of the image's actual dimensions, or the size of the control, the extents of the texture coordinates are always a power of two. So going all the way across an image would either be 128, 256, 512, or something like that, and so your texture coordinates need to be based on that, rather than the image or control sizes.