Skip to content

Instantly share code, notes, and snippets.

@jdf3

jdf3/cool.xaml Secret

Created February 12, 2016 19:07
Show Gist options
  • Save jdf3/8605a2bcd0405b4603c6 to your computer and use it in GitHub Desktop.
Save jdf3/8605a2bcd0405b4603c6 to your computer and use it in GitHub Desktop.
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel>
<!-- TODO: to a style (outside?) -->
<Separator x:Name="Separator"
Background="#1F000000"
Margin="0" />
<ContentControl ContentTemplate="{StaticResource SomeTemplate}"
Content="{Binding}" />
</StackPanel>
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource PreviousData}}"
Value="{x:Null}">
<Setter Property="Visibility"
TargetName="Separator"
Value="Collapsed" />
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</ItemsControl.ItemTemplate>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment