Reputation: 620
I use resource string for text appear in xaml pages by using these {Binding Path=LocalizedResources.AppName, Source={StaticResource LocalizedStrings}}
But where and how do I globalize application title in App list and Tile? Is it in WMAppManefist.xml? I tried the above syntax in App Title and token Title but don't seem to work.
Upvotes: 0
Views: 523
Reputation: 31
Having followed an article provided by Alaa Masound be sure to use:
@AppResLib.dll,-101
instead of:
@AppResLib.dll,-200
as your tile title, as defined in Microsoft resource dll template (AppResLib.rc):
#define AppTitle 100
#define AppTileTitle 101
So the reason for the problem is a discrepancy between Microsoft source code and its description.
Upvotes: 3