graphics
-
I am doing a project on binary trees, I need to show very large tree structure graphically on screen, How can make it in c#? shiva
-
I am doing a project on binary trees, I need to show very large tree structure graphically on screen, How can make it in c#? shiva
Well the easiest way would be with a TreeView control. You can look at my ThreeTree program to see how you can add nodes to the TreeView control. Or ware you thinking on drawing the tree yourself? -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
Well the easiest way would be with a TreeView control. You can look at my ThreeTree program to see how you can add nodes to the TreeView control. Or ware you thinking on drawing the tree yourself? -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
Hi, Thanks 4 reply Yes, I am thinking of drawing tree it self, as it shown in text books. I hope i can do it with GDI+,..But not sure. -- modified at 3:23 Tuesday 2nd May, 2006
-
Hi, Thanks 4 reply Yes, I am thinking of drawing tree it self, as it shown in text books. I hope i can do it with GDI+,..But not sure. -- modified at 3:23 Tuesday 2nd May, 2006
You can doo it with GDI+. I was trying to do draw my tree about a week ago, but then I decided to use the TreeView control. Drawing a tree seems very complex, as nodes would quickly overlap... -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
You can doo it with GDI+. I was trying to do draw my tree about a week ago, but then I decided to use the TreeView control. Drawing a tree seems very complex, as nodes would quickly overlap... -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
Hi, Can U please send me some sort of rough code, so i may modify and make it. It may help me. Thank U. Shiva
-
Hi, Can U please send me some sort of rough code, so i may modify and make it. It may help me. Thank U. Shiva
Code that does what? -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
Code that does what? -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
Which draw the tree
-
Which draw the tree
I think you missunderstood me. I didn't write a program that would manually draw the tree, I just used the TreeView control. -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
You can doo it with GDI+. I was trying to do draw my tree about a week ago, but then I decided to use the TreeView control. Drawing a tree seems very complex, as nodes would quickly overlap... -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
Ok, Sorry i misleaded Thank U