I know it sounds kind of funny or even silly, but what if we need to mix two Pictures into a PictureBox or Image Control in order to be able to draw a Mask?

For example, lets think we are going to draw a Rectangle using 9 different Pictures, 4 will be the Corners, 4 will be the Lines connecting the Corners and 1 would be the Center. Now, we have a PictureBox where we want to draw the first Corner at (0,0) then the first Line at (Corner1.left + Corner1.width, 0) then the second Corner at (Line1.left + Line1.width, 0); The second Line at (0, Corner1.top + Corner1.height)... And you get the idea.

Is there anyway to be able to do this?

Thanks for your attention