Skip to content

Instantly share code, notes, and snippets.

@Char0394
Created June 19, 2018 18:35
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/993804550a152c862b8c2be820f5f465 to your computer and use it in GitHub Desktop.
Save Char0394/993804550a152c862b8c2be820f5f465 to your computer and use it in GitHub Desktop.
<Label Text="{Binding Name, StringFormat='Good morning {0}'}"
HorizontalTextAlignment="Center">
<Label.Triggers>
<DataTrigger TargetType="Label"
Binding="{Binding Name}"
Value="">
<Setter Property="IsVisible" Value="False" />
</DataTrigger>
</Label.Triggers>
</Label>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment