Have an Image as the entire Background?

Is it possible to have an Image as the entire background, then layer your controls ontop of it ?!

Do i have to do this via code, and some GL calls ?! or can i just use an Image control and somehow lay it out in UX

As an example I am mocking up a Windows 10 MSN app … just to get my head around how the layout engine works…

I got this far :

https://onedrive.live.com/?cid=9EFC06A994461B0F&id=9efc06a994461b0f%2120496&authkey=%21AJxtpuflp8e2Dhg&v=3

And what i want is to render an entire image in the background and have all those other UI elements appear ontop of the image …

Is that even possible?!

This is possible to do in UX, take a look at the different stretchmodes that are available for Image https://www.fusetools.com/developers/api/fuse/elements/stretchmode

You probably want to do something like this:

<Image StretchMode="Fill" ...
<Image StretchMode="UniformToFill" ...