Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to setup a Windows Phone App without a tile title

How can I set no title to my app, like the Facebook app, since my app also have its name displayed in the logo ? I tried in the app properties in Visual Studio but it displays an error saying that the title should not be empty.

To clarify : I want the app tile not to display the app title.

like image 499
Thomas Joulin Avatar asked Feb 22 '23 20:02

Thomas Joulin


1 Answers

Open the WMManifest.xml in the Properties folder.

Find this:

<Tokens>
  <PrimaryToken TokenID="AppToken" TaskName="_default">
    <TemplateType5>
      <BackgroundImageURI IsRelative="true" IsResource="false">Background.png</BackgroundImageURI>
      <Count>0</Count>
      <Title>YOUR APP TITLE HERE</Title>
    </TemplateType5>
  </PrimaryToken>
</Tokens>

And change the Title element to

<Title></Title>

Done. No more title displayed on the tile when pinning your app.

Example to prove it's possible (This is a app that's available on the marketplace)

like image 105
Claus Jørgensen Avatar answered Mar 14 '23 21:03

Claus Jørgensen