Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
Cannot use new SelectedDataItems binding when XamDataTree is part of a template
posted

Hi.

I'm attempting to use the new SelectedDataItems (Ig 14.2) binding on the XamDataTree, but am getting the following compile error :

"Tags of type 'PropertyArrayStart' are not supported in template sections"

The xaml looks a little like this :

<UserControl.Resources>

  <DataTemplate x:Key="GroupTemplate">
    <ig:XamDataTree ItemsSource="{Binding Items}"
                            SelectedDataItems="{Binding SelectedFolders}" ... />

  </DataTemplate>

  

  <Style TargetType="{x:Type igOutlook:OutlookBarGroup}">
    <Setter Property="ContentTemplate" Value="{StaticResource GroupTemplate}" />
  </Style>

</UserControl.Resources>

<XamOutlookBar />