Created
July 19, 2021 22:37
-
-
Save joshayoung/c512b2d10e34d4935b1f24d3cd681b39 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
| <Entry Placeholder="First Name" x:Name="firstName" /> | |
| <Entry | |
| BackgroundColor="LightGray" | |
| IsEnabled="False" | |
| Placeholder="Last Name"> | |
| <Entry.Triggers> | |
| <!-- Enabled this field after 'firstName' is longer than three characters --> | |
| <DataTrigger | |
| Binding="{Binding Source={x:Reference firstName}, Path=Text.Length}" | |
| TargetType="Entry" | |
| Value="3"> | |
| <Setter Property="BackgroundColor" Value="White" /> | |
| <Setter Property="IsEnabled" Value="True" /> | |
| </DataTrigger> | |
| </Entry.Triggers> | |
| </Entry> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment