<Window x:Class="XamOutlookBarApp.IG_XamOutlookBar_Properties"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:igOutlookBar="http://infragistics.com/OutlookBar"
Title="IG_XamOutlookBar_Properties" Height="300" Width="300">
<StackPanel Orientation="Horizontal">
<igOutlookBar:XamOutlookBar Name="xamOutlookBar1" Width="144">
<igOutlookBar:OutlookBarGroup Header="Group 1" Content="Group 1"/>
<igOutlookBar:OutlookBarGroup Header="Group 2" Content="Group 2"/>
</igOutlookBar:XamOutlookBar>
<StackPanel>
<CheckBox IsChecked="{Binding ElementName=xamOutlookBar1, Path=ReserveSpaceForLargeImage}"
Content="ReserveSpaceForLargeImage">
</CheckBox>
<ContentControl
Content="{Binding ElementName=xamOutlookBar1, Path=SelectedGroupContent}"
ContentTemplate="{Binding ElementName=xamOutlookBar1, Path=SelectedGroupContentTemplate}"
ContentTemplateSelector="{Binding ElementName=xamOutlookBar1, Path=SelectedGroupContentTemplateSelector}"
>
</ContentControl>
</StackPanel>
</StackPanel>
</Window>