我有一个如下定义的按钮:
<Button x:Name="ButtonPlayMax"
Click="ButtonPlayMax_Click"
Style="{StaticResource PlayVideoAppBarButtonStyle}"
HorizontalAlignment="Center"
VerticalAlignment="Bottom"
FontSize="17.333"
Margin="0"/>
<Style x:Key="PlayVideoAppBarButtonStyle"
TargetType="ButtonBase"
BasedOn="{StaticResource AppBarButtonStyle}">
<Setter Property="AutomationProperties.AutomationId"
Value="PlayVideoAppBarButton" />
<Setter Property="AutomationProperties.Name"
Value="Play" />
<Setter Property="Content"
Value="" />
</Style>
按钮的文字标签设置为&#34; Play&#34;。
有没有办法在代码中动态更改文本标签为&#34;停止&#34;或者我必须定义第二个按钮并在它们之间切换?
THX
答案 0 :(得分:0)
IL_Agent的答案是正确的。我确实改变了风格。两种风格的差异只是播放和停止所需的文本。抱歉不要提前关闭此问题。