Skip to content

Instantly share code, notes, and snippets.

@julesx
Created September 27, 2013 19:53
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 julesx/6734282 to your computer and use it in GitHub Desktop.
Save julesx/6734282 to your computer and use it in GitHub Desktop.
<StackPanel Visibility="Hidden">
<StackPanel.Style>
<Style>
<Style.Triggers>
<MultiDataTrigger>
<MultiDataTrigger.Conditions>
<Condition Binding="{Binding LoggingIn}" Value="False" />
<Condition Binding="{Binding LoggedIn}" Value="False" />
</MultiDataTrigger.Conditions>
<Setter Property="StackPanel.Visibility" Value="Visible" />
</MultiDataTrigger>
</Style.Triggers>
</Style>
</StackPanel.Style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment