Using a windows forms application, most appropriate thing to use seems a listbox. Been searching around a bit, but I never found anything which seemed to explain it thoroughly.
The idea is to load data from an XML file, and then display it in a list, presumably a listbox. Basically just a vertical list with the option to scroll.
The XML file would be something like this:
<?xml version="1.0" encoding="UTF-8" ?>
<items amount="2">
<item>
<ID>1</ID>
<Name>Bag</Name>
<Type>Container</Type>
<Path>Images/</Path>
<Image>Bag.jpg</Image>
</item>
<item>
<ID>2</ID>
<Name>Backpack</Name>
<Type>Container</Type>
<Path>Images/</Path>
<Image>Backpack.jpg</Image>
</item>
</items>
</xml>
The list would contain different entries of the file dependant on the type. That's something I'll try to figure out myself..
Getting all the information from the XML file works fine.. Just drawing the images and displaying them next to the text is a problem.
Thanks in advance for any ideas..