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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T06:02:52+00:00 2026-06-11T06:02:52+00:00

For example, there are .Name , .Text fields. What if I need Type ,

  • 0

For example, there are .Name, .Text fields. What if I need Type, Path and Direction fields, how can I add them to class TreeNode ?

  • 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-11T06:02:53+00:00Added an answer on June 11, 2026 at 6:02 am

    Does this satisfy what you intended? I’ve shown these as properties, but omit the {get;set;} and you’ll have fields.

      class myTreeNode : System.Windows.Forms.TreeNode
      {
        public string NodeType { get; set; }
        public string NodePath { get; set; }
        public string Direction { get; set; }
      }
    

    To add myTreeNode instances to a TreeView, you’d do this:

    myTreeNode node = new myTreeNode();  
    treeview1.Nodes.Add(node);
    

    If you want to use the Tag property instead of storing these directly in an inherited node, (showing just two properties instead of 3)

    class NodeTag
    {  
      public NodeTag(string path, string direction)
      {
         NodePath = path;
         Direction = direction;
      }
      public string Direction {get;set;}
    }
    

    Then, in your code that creates the tree, you’ll do this:

    TreeNode node = new TreeNode();
    node.Tag = new NodeTag("my path", "South");
    treeView1.Nodes.Add(node);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a name for this? Here's an example of what I'm trying to
Is there a way to set app icon only based by name. For example
I need to explain this by example: Is there a best practice or preference
a simple table contains - id , name , text . I need to
Lets say for example there are 5 records shown on screen. I want the
On the Groovy example page there is an example of how to use Groovy
How to paginate a word document for example if there are 10 pages: page
Is a C# struct thread-safe? For example if there is a: struct Data {
Is there any example on how to implement a simple login page/dialog? I have
Is there an example of a bitmap color replacement implementation that actually works? I'm

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.