Skip to content

Instantly share code, notes, and snippets.

@julesx
Created February 11, 2017 20:57
Show Gist options
  • Save julesx/02d5b0bf509c5c45229ea7f0ea28d6be to your computer and use it in GitHub Desktop.
Save julesx/02d5b0bf509c5c45229ea7f0ea28d6be to your computer and use it in GitHub Desktop.
<ContentControl Content="{Binding}">
<ContentControl.Resources>
<Style TargetType="ContentControl">
<Style.Triggers>
<DataTrigger Binding="{Binding SelectedItems.Count}" Value="1">
<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<ComboBox />
</DataTemplate>
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</ContentControl.Resources>
</ContentControl>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment