0
Answer

Problem with .xml and list view

Ask a question
Samuel Vaesy

Samuel Vaesy

16y
1.9k
1

Hello, my first post here \o/


Im also quite noob whit C#, but to the point...

I'm trying to display data from .xml file (which is updated periodically) in listView, but so far I haven't got anything working properly yet. Practically the data which should be displayed is group of measured temperatures saved to .xml file.
 
I got one version working somehow, but it didn't "update" the listView, it only added new information to it...

So, could you advise me, which would be the best way to get data from .xml file to the listView so that every time this loop runs, it replaces old values wiht new ones? Is the listView the best way to handle this, or are there some other(better) ways to do this?

The Content of the .xml file looks like this(form of the content can be changed if it eases the display "procedure"):

<sensor0>
    <id>T10</id>
    <description>Temperature0</description>
    <value>0</value>
</sensor0>
<sensor1>
    <id>T11</id>
    <description>Temperature1</description>
    <value>0</value>
</sensor1>
<sensor2>
    <id>T12</id>
    <description>Temperature2</description>
    <value1>23</value1>
</sensor2>
<sensor3>
    <id>T13</id>
    <description>Temperature3</description>
    <value>0</value>
</sensor3>