Yeah! I finally worked through another post here. Here's what I could get by adding each XML element to the list view.
XDocument xdoc = XDocument.Load("c:\\isbn.xml");
var items = from item in xdoc.Descendants("BookData")
select new
{
Title = item.Element("Title").Value,
AuthTexts = item.Element("AuthorsText").Value
};
foreach (var item in items)
{
listView1.Items.Add(new { Title = item.Title, Author = item.AuthTexts });
}