Mangesh
Mangesh

Reputation: 5871

How to change background of windows phone designer?

I'm developing Windows Phone app in Visual Studio 2013.

By default the phone designer's background is black. It is very hard to design on it if all of my resources (images, font colors, backgrounds) are dark.

Is there any way to change that background to some light color?

Upvotes: 1

Views: 992

Answers (3)

Abdul Samad Khan
Abdul Samad Khan

Reputation: 102

It simple First click the Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> in your xaml.cs page then go to the properties you will see on the top thre is a BRUSH where you can change the color or your back ground and put background Image ..

<Page.Background>
        <ImageBrush Stretch="Fill" ImageSource="Image/Button/yourBgImage.png"/>
    </Page.Background>

Upvotes: 1

Decade Moon
Decade Moon

Reputation: 34306

In the Device Window (Design -> Device Window menu), you can change the theme from dark to light. This will affect the designer only and will not change your XAML. You can also change the designer accent color and some other properties too.

Screenshot

Upvotes: 2

Chubosaurus Software
Chubosaurus Software

Reputation: 8161

Set the <Page>'s RequestedTheme to Light

enter image description here

Upvotes: 1

Related Questions