Last active
February 27, 2020 16:28
-
-
Save MartinZikmund/7e340da07ab62b67ef9c96b10d5ea80a 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
<StackPanel x:DefaultBindMode="TwoWay"> | |
<TextBox Header="First name" Text="{x:Bind ViewModel.FirstName}" /> | |
<TextBox Header="Last name" Text="{x:Bind ViewModel.LastName}" /> | |
<CheckBox Content="Is subscribed" IsChecked="{x:Bind ViewModel.IsSubscribed}" /> | |
</StackPanel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment