-1

I have an XML file of following structure:

Student
     Name XXX
          Details of Student (class, ID etc.)
     Name yyy
          Details of Student
     Name zzz
          Details of Student
    .................
 /Student

I want to represent it using following graphics to users (student details can have sub-details):

enter image description here

How to show that using C# (any free software or programming suggestion will be helpful - little variation in graphical structure is also acceptable).

user1838343
  • 431
  • 2
  • 8
  • 15
  • I think you need to specify a bit more what you are asking. What have you tried? – Marcus Wigert Aug 06 '14 at 08:35
  • @MarcusWigert, first I am thinking to use DOT language to represent it (using binary tree). but, free available DOT language parser software can't able to present student details using binary tree nodes.so, thinking to do it another way. but, have no idea how to do that. actually, I want a suitable graphical representation to show student information to user. – user1838343 Aug 06 '14 at 08:39
  • This is not the place to "get started", it's for specific problems that have specific solutions. You will have to ask elsewhere to get a satisfying answer. – Marcus Wigert Aug 06 '14 at 08:41
  • you can also look at http://stackoverflow.com/questions/2005274/free-or-open-source-diagramming-component-for-winforms – Thakur Aug 06 '14 at 08:43

1 Answers1

1

This seems to be right fit you http://www.dalssoft.com/diagram/default.aspx

you may need to look at http://nshape.codeplex.com/ http://graphsharp.codeplex.com/

Rabi
  • 2,130
  • 14
  • 18