BackgroundImage and Pin to start in Windows Phone 7 using Visual Studio

In one of my previous posts , i talked about  How to change the StartPage of the Windows Phone 7 Application in Visual Studio 2010 ? and talked bout how we can change the page in the WMAppManifest.xml.

You might be wondering about the section BackgroundImageURI in the WMAppManifest.xml file in the following code

<Tokens>

<PrimaryToken TokenID="WindowsPhoneApplication4Token" TaskName="_default">

<TemplateType5>

<BackgroundImageURI IsRelative="true" IsResource="false">Background.png</BackgroundImageURI>

<Count>0</Count>

<Title>WindowsPhoneApplication4</Title>

</TemplateType5>

</PrimaryToken>

</Tokens>

The BackgroundImageURI section contains the 173 X 173 image that will be displayed on the start screen of the Windows Phone 7 when the user pins  the Application .
Hold Down the Mouse Button on the test App which will display a popup menu .

This provides the option to Pin the Application to start screen as well as Uninstall the Application .

BackgroundImage and Pin to start in Windows Phone 7 using Visual Studio

Click the Pin to start button.

No go back to the Start page to see the Application Icon 🙂

BackgroundImage and Pin to start in Windows Phone 7 using Visual Studio

Again you can change the Text for the Start Page from the title section in the above xml code . Just change

<Title>WindowsPhoneApplication4</Title>

to

<Title>test</Title>

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you will learn about sync provider notifications in Windows 11 and how to disable or enable it...
In this tutorial, let’s learn how to enable or disable the startup sound in Windows 11. By default, when Windows...
The CameraCaptureTask allows the Windows Phone 7 App to launch the Camera Application . This will be useful when the...