For my Silverlight TreeView's items source I have a collection of Order items, and each Order has two collections, OrderItems and Commissions. So I want a treeview that looks kind of like
Order #1
- Order Items
- Order Item #1
- Order Item #2
- Order Item #3
- Commissions
- Commission #1
- Commission #2
- Commission #3
- Commission #4
etc. So ever Order will have a Order Items and Commissions header, and the contents of these are databound. I'm kind of stumped by this, even though it seems kind of simple.
This is the XAML I have so far. Obviously creating the HierarchicalDataTemplates for the OrderItems and CommissionsItems collections is simple, but how do I set the ItemsSource of the HDT above? In other words, what would [what goes here?] look like?
<Grid>
<Grid.Resources>
<sdk:HierarchicalDataTemplate
x:Key="OrdersTreeLevel0"
ItemsSource="{StaticResource [what goes here?]}"
ItemTemplate={StaticResource OrdersTreeLevel1}">
<TextBlock
FontWeight="{Binding IsUnread}"
Text="{Binding Id, StringFormat='Order #{0}'}" />
</sdk:HierarchicalDataTemplate>
</Grid.Resources>
<sdk:TreeView
ItemsSource="{Binding Items}"
ItemTemplate="{StaticResource OrdersTreeLevel0}">
</sdk:TreeView>
</Grid>