c# - Use ObjectListView For A Logbook With An XML File -


I am creating a logbook application that allows you to create data fields for logbook entries and to display data Uses an objectlistview. However, this presents a problem as the name of the area can change from the logbook to the logbook, I can not write a single class to deal with the presentation of the logbook.

The application will use the XML format in this way:

  & lt; Entry date = "2/18/2014" & gt; & Lt; Field name = "hours" type = "int" value = "3" display = "used hours" /> & Lt; Field name = "gallon" type = "double" value = "6.8" display = "used gallons" /> & Lt; Filed name = "comment" type = "string" value = "..." display = "comment" /> & Lt; / Entry & gt;  

How can I change an XML file like above which can display objectlist?


Comments