XmlDocument doc = new XmlDocument();
doc.Load(Application.StartupPath + "\\userList.xml");
XmlNode node = doc.SelectSingleNode("UserList/Owner/Id");
this.lbId.Text += node.InnerText ;
node = doc.SelectSingleNode("UserList/Owner/NickName");
this.lbName.Text += node.InnerText ;
this.nickName = node.InnerText ;
node  = doc.SelectSingleNode("UserList/Owner/Icon");