I have an array of objects containing pairs of string labels and values, how would I put them all in a single property grid?
public class stringVariable { public String name; public String defaultValue; public String value; }; public List<stringVariable> variables = new List<stringVariable>();
Adding an array of objects to a property grid is pretty well covered in a number of tutorials. This should be what you’re looking for.