Post

[WPDev] How-to create a tile without app title for Windows Phone

Every App has always a title on its dedicated tile for the Windows Phone start screen. But what if your tile icon contains already the title of your app?

Normally, you are setting the appearance of your app within the properties:

properties

If you have done this, your logo is displayed, but contains the title string. So how can we delete this?

In properties, you are not allowed to delete the name. You will face an error: “Title cannot be empty”.

You need to go to the Application Manifest and edit the XML manually. Go to solution explorer, and open the properties tree. With a double click on “WMAppManifest.xml” you will see the following Window:

wpappmanifest

To edit the title of the start screen, search for the section. Within this section, you will find a Title section, which contains the title of your app (as you have set within the properties). Now simply delete the title string.

TwTTile

If you now debug your application, you will see that your tile no longer displays the title.

I hope this short how-to will be helpful for you.

This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.