How to hide application title in WP7 application tile
I'd like not to开发者_如何学编程 show the application name in the tile of Windows Phone 7, like the Netflix or the Facebook applications do, but when I try to set it to empty (or even an empty space) Visual Studio complains that an empty title is not allowed.
Any idea of how to achieve this? The logo of my app already contains the name of the app, so having also the default title is not very nice looking.
If you set the <Title>
to a whitespace under <Tokens><PrimaryToken>
; in WMAppManifest.xml
you should get an empty title in the start page tile.
You shouldn' change the Title
attribute in the tag at the top.
Right click on your project name. Go to Properties. Go to XNA Game Studio section. Where it says "Tile title:" just put a whitespace. Save everything and debug your project.
Martin's answer didnt work for me unluckily but the thing which worked was: Double click on project properties and in the field xap file name remove underscore. It worked perfect for me.
精彩评论