XML : Read from an xml document and display each movie title in a label and the corresponding rating in a progress bar

This is the content of the xml file I created a Windows Form Application and I added 4 labels and four progress bars But I have no idea as to how I should display each movie and rating in their own labels and progress bars

  <?xml version="1.0" encoding="utf-8" ?>    <cinema>     <movie>       <title>The Dark Knight</title>        <rating>8</rating>      </movie>     <movie>       <title>The X Files</title>        <rating>3</rating>      </movie>     <movie>       <title>Hancock</title>        <rating>7</rating>      </movie>     <movie>       <title>Kick-ass</title>        <rating>8</rating>      </movie>  </cinema>    

No comments:

Post a Comment