AutomationProperties.Name
是否可以用不同的颜色设置值的样式?我从我的应用程序中的深色主题中获得了基本的文本颜色。我有一个自定义背景颜色,这就是为什么我需要一个特定的ForegroundColor
和TextColor
这个属性(Value="OtherUserAppBarButton"
)
<Style x:Key="LogoutAppBarButtonStyle" TargetType="ButtonBase"
BasedOn="{StaticResource AppBarButtonStyle}">
<Setter Property="AutomationProperties.AutomationId" Value="OtherUserAppBarButton"/>
<Setter Property="AutomationProperties.Name" Value="Other User"/>
<Setter Property="Content" Value=""/>
<Setter Property="Foreground" Value="#ffffffff" />
</Style>
有人有想法吗?