Skip to content

Instantly share code, notes, and snippets.

@kusa-mochi
Created February 22, 2020 03:41
Show Gist options
  • Save kusa-mochi/6d78c968839c349f76be097919811315 to your computer and use it in GitHub Desktop.
Save kusa-mochi/6d78c968839c349f76be097919811315 to your computer and use it in GitHub Desktop.
<TextBox x:Name="TestTextBox" Grid.Column="1" HorizontalAlignment="Center" Height="23" TextWrapping="Wrap" Text="りんご" VerticalAlignment="Center" Width="200">
<TextBox.Triggers>
<DataTrigger Binding="{Binding TestFlag}" Value="True">
<Setter Property="Text" Value="バナナ"/>
</DataTrigger>
</TextBox.Triggers>
</TextBox>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment