可以使用不同的顏色設置AutomationProperties.Name
值的樣式嗎? 我從應用程序中的黑暗主題中獲取基本文字顏色。我有一個自定義背景色和這就是爲什麼我需要一個特定的ForegroundColor
和TextColor
此屬性(Value="OtherUserAppBarButton"
)TopAppBar按鈕Windows應用商店應用中的AutomationProperties樣式
<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>
有人偷的想法?