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
1915
How do you set GroupContentTemplate for XamOutlookBar 2010.2 - there is no such property
posted

I am trying to bind Groups and content items dynamically to a XamOutlookBar NA version 2010v2. All of the examples I am seeing initialize XamOutlookBar.GroupContentTemplate but in version 2010.2 there isn't GroupContentTemplate member. Question is how do I create a data template for the group content in version 2010.2. Thanks.

All expamples rerer to doing this:

<igOB:XamWebOutlookBar.GroupContentTemplate>
    <DataTemplate>
      <StackPanel>
        <TextBlock Text="{Binding Name}"/>
        <TextBlock Text="{Binding Enabled}"/>
        <TextBlock Text="{Binding Visible}"/>
      </StackPanel>
    </DataTemplate>
  </igOB:XamWebOutlookBar.GroupContentTemplate>