Hi,
I am new to C# and i have to make a tree of some parameters so i can change their values.
The tree should look like this:
Tree + (collapsible/expandable)
| ParameterName1 ParameterValue1
| ParameterName2 ParameterValue2
etc
The ParameterName is fixed and read from file (as well as a default value for ParameterValue) but I would like to be able to edit and save the values above (ParameterValue1, ParameterValue2).
Can anyone point me in the right direction of what I should be using to do this task?
Many thanks in advance
Andy