下部のアプリバーでボタンをローカライズするにはどうすればよいですか。ボタンの下にあるドイツ語のデバイス「Neu」と英語のデバイス「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>
ありがとう!