HELP : How to add a background to the app

I have the basic theme of a blank white page how d i add my own custom background to the app. Also how can i create custom buttons and how they look. Thanks in advance.

Hi!

To add a background, simply use a Panel and place whatever you want to use as background as the last element in the panel, e.g.:

<App>
    <Panel>
        <StackPanel>  ... foreground goes here ... </StackPanel>

        <Image File="background.jpg" />
    </Panel>
</App>

To make a custom button style, you can do this:

<Style>
    <Button ux:Cascade="false">
        <Rectangle CornerRadius="10" ux:Binding="Background">
            <SolidColor Color="#f00" />
        </Rectangle>
    </Button>
</Style>

Thank you very much!