Skip to content

Instantly share code, notes, and snippets.

@worldbeater
Last active November 25, 2022 15:49
Show Gist options
  • Save worldbeater/e1a4382c39cfba75831ba037929d2e5b to your computer and use it in GitHub Desktop.
Save worldbeater/e1a4382c39cfba75831ba037929d2e5b to your computer and use it in GitHub Desktop.
<StackPanel>
<!-- Note the ".Value" suffix added to "Name" and "Greeting" properties. -->
<TextBox Text="{Binding Name.Value, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
<TextBlock Text="{Binding Greeting.Value, Mode=OneWay}"/>
<Button Content="Clear" Command="{Binding Clear}"/>
</StackPanel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment