Skip to content

Instantly share code, notes, and snippets.

@glebd
Created May 25, 2010 10:38
Show Gist options
  • Save glebd/412991 to your computer and use it in GitHub Desktop.
Save glebd/412991 to your computer and use it in GitHub Desktop.
<ToggleButton Name="showStopsCheckBox">
<ToggleButton.Style>
<Style TargetType="{x:Type ToggleButton}">
<Setter Property="Content" Value="Stops"/>
<Style.Triggers>
<Trigger Property="IsChecked" Value="True">
<Setter Property="Content" Value="Trips"/>
</Trigger>
</Style.Triggers>
</Style>
</ToggleButton.Style>
</ToggleButton>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment