Hide style text from a Silverlight WP7 application

I saw a message in “ How to hide the application title in the WP7 application area .” However, I cannot find this setting in the Silverlight application. I tried to change it in the project settings and do not really like what was indicated in the previous question.

TIA

+3
source share
1 answer

The answer seems to work.

In WMAppManifest.xaml, if you delete the values ​​in the Title element, it works. Even for mangoes.

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

All Articles