I have a Windows 8 Metro application created from the Grid Application template. I need to localize the buttons in the AppBar. Normaly I use x:Uid and .resw for localization but this does not work for the navigation buttons in AppBar.
For example, for the Home button I need to localize the "Home" text. The "Home" text is defined in StandardStyles.xaml as follows:
<Setter Property="AutomationProperties.Name" Value="Home"/>
I tried defining HomeButton.AutomationProperties.Name in resw but I get
Unable to resolve property 'AutomationProperties.Name' while processing properties for Uid
Can anyone help?