You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an awesome piece of software! I've been waiting for someone to make it easier to edit projects.
I have some small requests: Make it a little bit more object oriented. I would love to load a project and get a list of sections with nodes and attributes populated, and when I create a fresh project, I create the sections, fill in the nodes/attributes and pass the section on to your to be able to update the xml.
A couple classes like this might do:
using System.Collections.Generic;
public partial class GroupWithNodes
{
public GroupWithNodes()
{
Nodes = new List<GroupNode>();
Attributes = new List<GroupNode>();
}
public string Group { get; set; }
public List<GroupNode> Nodes { get; set; }
public List<GroupNode> Attributes { get; set; }
}
public partial class GroupNode
{
public GroupNode()
{
Attributes = new List<GroupNode>();
}
public string Name { get; set; }
public string Value { get; set; }
public List<GroupNode> Attributes { get; set; }
}
Thanks,
Rick
The text was updated successfully, but these errors were encountered:
This is an awesome piece of software! I've been waiting for someone to make it easier to edit projects.
I have some small requests: Make it a little bit more object oriented. I would love to load a project and get a list of sections with nodes and attributes populated, and when I create a fresh project, I create the sections, fill in the nodes/attributes and pass the section on to your to be able to update the xml.
A couple classes like this might do:
Thanks,
Rick
The text was updated successfully, but these errors were encountered: