我有一个应用栏按钮,我想通过代码隐藏动态更改其下方显示的文本。我尝试更改其 Content 属性,但它更改了图标。
我无法在stackoverflow上或通过互联网找到答案......
谢谢你的帮助。
我有一个应用栏按钮,我想通过代码隐藏动态更改其下方显示的文本。我尝试更改其 Content 属性,但它更改了图标。
我无法在stackoverflow上或通过互联网找到答案......
谢谢你的帮助。
在代码中,编写以下内容:
AutomationProperties.SetName(myAppBarButton, "New text");
如果您查看标题的工作方式,他们会AutomationProperties.Name
为此目的“劫持”附加属性,然后将其绑定到内部。
转到standardstylesheet.xaml 并添加一个新的键,就像已经在那里找到的键一样!
<Style x:Key="SkipBackAppBarButtonStyle" TargetType="ButtonBase" BasedOn="{StaticResource AppBarButtonStyle}">
<Setter Property="AutomationProperties.AutomationId" Value="SkipBackAppBarButton"/>
<Setter Property="AutomationProperties.Name" Value="Skip Back"/>
<Setter Property="Content" Value=""/>
</Style>