Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 349875
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T11:29:57+00:00 2026-05-12T11:29:57+00:00

I have the following class structure: class Organization { string Name; List<User> users; List<Organization>

  • 0

I have the following class structure:

class Organization
{
    string Name;
    List<User> users;
    List<Organization> Children;
}

class User
{
    string Name;
}

I cannot modify these classes.
I need to display all the information about organizations and users in one TreeView control. I.e., organization nodes should contain suborganization and user nodes.
The question is how can I do this having no CompositeCollections or Multibindings in Silverlight?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T11:29:57+00:00Added an answer on May 12, 2026 at 11:29 am

    The tricky part of this solution is having to deal with two collections underneath each node and TreeView’s HierarchicalDataTemplate only supports binding to a single ItemsSource.

    One option is to create a ViewModel that merges the collections into a single class that represents an entry in the TreeView that you can then bind to inside your HierarchicalDataTemplate.

    First I created my ViewModel class:

    public class TreeViewEntry
    {
        public string Name { get; set; }
        public IEnumerable<TreeViewEntry> Children { get; set; }
        public object Model { get; set; }
    }
    

    Then I used a function, some Linq and some recursion to pull all the objects into a single collection:

    private IEnumerable<TreeViewEntry> OrganizationsToTreeViewEntries(IEnumerable<Organization> orgs)
    {
        return (from o in orgs
                select new TreeViewEntry
                {
                    Name = o.Name,
                    Model = o,
                    Children = (from u in o.Users
                                select new TreeViewEntry
                                {
                                    Name = u.Name,
                                    Model = u
                                }
                                ).Concat(OrganizationsToTreeViewEntries(o.Children))
                });
    }
    
    
    public MainPage()
    {
        InitializeComponent();
    
        var items = OrganizationsToTreeViewEntries(existingOrganizationData);
        OrgTree.ItemsSource = items;
    }
    

    Now that I have a merged ItemsSource it’s easy to style my HierarchicalDataTemplate:

    <UserControl.Resources>
        <common:HierarchicalDataTemplate x:Key="OrgTemplate" ItemsSource="{Binding Children}">
            <StackPanel>
                <TextBlock Text="{Binding Name}"  />
            </StackPanel>
        </common:HierarchicalDataTemplate>
    </UserControl.Resources>
    
    <Grid x:Name="LayoutRoot" DataContext="{Binding Source={StaticResource SampleDataSource}}">
        <controls:TreeView x:Name="OrgTree" HorizontalAlignment="Left" Margin="8,8,0,8" Width="225" ItemTemplate="{StaticResource OrgTemplate}" />
    </Grid>
    

    You can use a ValueConverter to tweaks things like FontWeight if you want to adjust the visual style of certains elements (for example in my testing I created a ValueConverter on FontWeight that was bound to the Model property of TreeViewEntry).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 167k
  • Answers 167k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I fear that you'll end up with the JavaScript fighting… May 12, 2026 at 1:27 pm
  • Editorial Team
    Editorial Team added an answer Changes will only be propogated if the underlying data source… May 12, 2026 at 1:27 pm
  • Editorial Team
    Editorial Team added an answer One of the simplest browser games is just a series… May 12, 2026 at 1:27 pm

Related Questions

Let's say I have the following class structure: class Car; class FooCar : public
I have the following class structure FlowerDAO with the fields (mapped using Hibernate): id
I'm wanting to get some binding working in my mvc application. I find nested
This same question was asked here and an answer was given which is workable,

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.