Skip to content

Instantly share code, notes, and snippets.

Created May 26, 2017 02:32
Show Gist options
  • Save anonymous/fffa0e18cc7c2db8ca8a6937062f27cd to your computer and use it in GitHub Desktop.
Save anonymous/fffa0e18cc7c2db8ca8a6937062f27cd to your computer and use it in GitHub Desktop.
<StackLayout Spacing="5">
<Label VerticalOptions="FillAndExpand"
Text="{Binding DisplayName}"
FontSize="Medium"
TextColor="Magenta">
<Label.Triggers>
<DataTriggers TargetType="Label"
Binding="{Binding IsVIP}"
Value="True">
<Setter Property="TextColor" Value="Blue" />
</DataTriggers>
</Label.Triggers>
</Label>
<Label VerticalOptions="FillAndExpand"
Text="{Binding Email}"
FontSize="Small"
TextColor="Gray" />
</StackLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment