How can I localize an button in the bottom appbar. I want to write on a german device ‘Neu’ under the button and on an english device ‘Add’.
<Style x:Key="AddAppBarButtonStyle" TargetType="ButtonBase" BasedOn="{StaticResource AppBarButtonStyle}">
<Setter Property="AutomationProperties.AutomationId" Value="AddAppBarButton"/>
<Setter Property="AutomationProperties.Name" Value="Add"/>
<Setter Property="Content" Value=""/>
</Style>
Thanks!
So if you are using the button styles you could do something like this:
And then in your RESW you’d have:
as your key value.