I'd recommend looking at XmlReader. Some other approaches are easier in different ways, but you can build anything from XmlReader. Such as:
while(rdr.Read())
if(rdr.NodeType == XmlNodeType.Element)
switch(rdr.LocalName)
{
case "strFolder1":
strFolder1 = rdr.ReadContentAsString();
break;
case "strFolder2":
strFolder2 = rdr.ReadContentAsString();
break;
case "strTabName":
strTabName = rdr.ReadContentAsString();
break;
case "strTabText":
strTabText = rdr.ReadContentAsString();
break;
}
(We could take some short-cuts if guaranteed the ordering, I did it the hard way to show that the hard way isn't that hard).
Using XmlDocument, XmlSerializer and XDocument are easier in a lot of cases, but I recommend learning this first because it'll handle everything and is never less efficient. If you learn it first the worse that'll happen is you do a bit more work than necessary to end up with something a bit more efficient than strictly necessary (you'll do a micro-optimisation out of ignorance of the simpler ways). If you learn the others first the worse that'll happen is you do a lot more work than necessary to end up with something a lot less efficient than needed.