Created
February 22, 2020 03:41
-
-
Save kusa-mochi/6d78c968839c349f76be097919811315 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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