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 180725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T14:38:13+00:00 2026-05-11T14:38:13+00:00

I have ultraTree (infragistics tree) which is created at design time and it has

  • 0

I have ultraTree (infragistics tree) which is created at design time and it has custom class as ‘Tag’. I have List as member variable. I have two combo box. Based on the combo selection I’ll check the List’s each items ‘Tag’. If list contains, just i pick that, otherwise i create a new UltraTree and add it to List and i assign to the Tree that is created at design time.

My problem is, what i adding to the collection gets reference and all the item in the collection are overwritten by the last item. UltraTree don’t have any clone method.

I don’t found any way to clone using this control.

What can be my solution 🙁

My sample code is

// My custom class SelectedDeviceState treeState = new SelectedDeviceState(     firstDevice, secondDevice);  UltraTree tree = new UltraTree();  // This will clone the root node // (it will be executed only once -> Root) foreach (UltraTreeNode nod in tvwNavigation.Nodes) {     UltraTreeNode tnode = nod.Clone() as UltraTreeNode;     tree.Nodes.Add(tnode); }  //Adding the custom class as TAG tree.Tag = treeState;  // Assigned and added tvwNavigation = tree; _treeCollection.Add(tree); 
  • 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. 2026-05-11T14:38:13+00:00Added an answer on May 11, 2026 at 2:38 pm

    You could perform a manual clone by writing a method that creates a new isntance of your type then assigns values to it from the original object.

    In terms of a tree structure you would need to write a recursive clone, something like.

    private ItemType CloneDeep(ItemType node) {     ItemType clone = new ItemType();     clone.Property1 = node.Property1;     clone.Property2 = node.Property2;      foreach ( ItemType child in node.Nodes)     {         clone.Nodes.add(CloneDeep(child));     }     return clone; } 

    Maybe look at extension methods.

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

Sidebar

Related Questions

have written this little class, which generates a UUID every time an object of
I have a problem using Infragistics UltraTree control. I need a way to add
Have created a ATL COM project through which I am inserting Menu Items to
Have a simple one-off tasks which needs a progress bar. OpenSSL has a useful
have a help file which i have created in Notepad++ with the following syntax
I have a UltraTree control which selects a page to display in a UltraTabControl.
Have a procedure which looks like Procedure TestProc(TVar1, TVar2 : variant); Begin TVar1 :=
Have deployed numerous report parts which reference the same view however one of them
Have a simple contact us XPage created. Have server side validation in place that
Have a really weird one here. The app has two targets, just to be

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.