<syncfusion:GroupBar Name="gBar" Margin="10" ItemHeaderHeight="25" ItemsSource="{Binding SampleList}"
Width="300" HorizontalAlignment="Center" VisualMode="MultipleExpansion" >
<syncfusion:GroupBar.ItemContainerStyle>
<Style TargetType="{x:Type syncfusion:GroupBarItem}" BasedOn="{StaticResource Office2007BlueGroupBarItemStyle}">
<Setter Property="Header" Value="{Binding}"/>
<Setter Property="HeaderTemplate">
<Setter.Value>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" FontWeight="Bold" Margin="3" VerticalAlignment="Center"/>
</StackPanel>
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="Content" Value="{Binding}"/>
<Setter Property="ContentTemplate" Value="{StaticResource template}"/>
<Setter Property="IsExpanded" Value="True"/>
</Style>
</syncfusion:GroupBar.ItemContainerStyle>
</syncfusion:GroupBar> |