Jason N. Gaylord
Jason N. Gaylord

Reputation: 8324

Hiding Tile text from Silverlight WP7 Application

I saw the post at " How to hide application title in WP7 application tile". However, I can't seem to find that setting in the Silverlight application. I've tried changing it in the project settings and cannot much like what was stated in the previous question.

TIA

Upvotes: 3

Views: 672

Answers (1)

kanchirk
kanchirk

Reputation: 912

The Answer seems to work.

In WMAppManifest.xaml if you remove the values in Title element, it works. Even for Mango.

<Tokens>
      <PrimaryToken TokenID="FishJumpToken" TaskName="_default">
        <TemplateType5>
          <BackgroundImageURI IsRelative="true" IsResource="false">Background.jpg</BackgroundImageURI>
          <Count>0</Count>
          **<Title></Title>**
        </TemplateType5>
      </PrimaryToken>
    </Tokens>

Upvotes: 8

Related Questions