Skip to content

Instantly share code, notes, and snippets.

@joshayoung
Created July 19, 2021 22:37
Show Gist options
  • Save joshayoung/c512b2d10e34d4935b1f24d3cd681b39 to your computer and use it in GitHub Desktop.
Save joshayoung/c512b2d10e34d4935b1f24d3cd681b39 to your computer and use it in GitHub Desktop.
<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