Skip to content

Instantly share code, notes, and snippets.

@Char0394
Created June 19, 2018 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Char0394/635ccb771ef5ef23d034deef84742ad0 to your computer and use it in GitHub Desktop.
Save Char0394/635ccb771ef5ef23d034deef84742ad0 to your computer and use it in GitHub Desktop.
<Entry Placeholder="First name"
x:Name="nameEntry"
Text=""/>
<Entry Placeholder="Last name">
<Entry.Triggers>
<DataTrigger TargetType="Entry"
Binding="{Binding Source={x:Reference nameEntry},
Path=Text.Length}"
Value="0">
<Setter Property="IsEnabled" Value="False" />
</DataTrigger>
</Entry.Triggers>
</Entry>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment