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

  • SEARCH
  • Home
  • 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 7859621
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T21:57:33+00:00 2026-06-02T21:57:33+00:00

I want to create a tree view which list down all properties in an

  • 0

I want to create a tree view which list down all properties in an assembly. I am able to generate the root nodes using the following code:

mainAssembly = Assembly.LoadFile(filename); //Global Variable
Type[] objTypes = mainAssembly.GetTypes().OrderBy(o=>o.Name).ToArray();
foreach (var type in objTypes)
{
    TreeViewItem item = new TreeViewItem();
    item.Header = type.Name;
    item.Foreground = Brushes.White;
    item.ToolTip = type.FullName;
    tvEntities.Items.Add(item);
}

On click of the root node [class name], I want to list down properties contained in that particular class. But if it contains an aggregated property of type class1, which is in another assembly, it gives me IOFileNotFound Exception error.

private void ItemExpanded(object sender, RoutedEventArgs e)
{
    try
    {
        TreeViewItem item = e.OriginalSource as TreeViewItem;

        if (item.ToolTip != null)
        {
            Type assemblyType = mainAssembly.GetType(item.ToolTip.ToString());
            if (assemblyType != null)
            {

                foreach (var prop in assemblyType.GetProperties())
                {

                    PropertyInfo property = prop;
                    TreeViewItem childItem = new TreeViewItem();
                    childItem.Header = property.Name;
                    /*Following line gives IOFileNotFound exception, if property  is declared in some other assembly.*/
                    childItem.ToolTip = property.PropertyType.FullName;
                    item.Items.Add(childItem);
                }
            }
       }
   }
   catch (Exception ex)
    {
        throw ex;
    }
}                           

How to load these referenced assemblies and show a tree like structure.

  • 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-06-02T21:57:34+00:00Added an answer on June 2, 2026 at 9:57 pm

    Make sure that all referenced assemlies are copied to your application’s folder. The reason you are getting the exception is that the CLR cannot find one of the referenced assemblies.

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

Sidebar

Related Questions

I want to be able to create a tree view that can get its
All, I created a plugin using the create plugin with a view wizard, which
I want to create tree structure using web service. I have used bottom up
I want create module which update list of usb devices automatically (not only mass
I want to create a tree panel in sencha touch, but I am unable
I am trying to implement a B+ tree myself, but I want to create
I want to display a file tree similarly to java2s.com 'Create a lazy file
I'm building a menu using Prism (using a trtelerik tree view with hierarchy data
I am Learning in flex 3.0. I want to create sample application which display
I am having the tree with all my task which gets all the data

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.