您好,我想在标准 AddAppBarButton 下方本地化文本
<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>
我试过在资源文件中添加类似
ButtonId.AutomationProperties.Name = value
但它不起作用。应用程序启动时出现错误。我怎样才能翻译这个属性?