xmldocument := TXMLDocument.Create(nil);
  xmldocument.Active := true;
  xmldocument.Version := '1.0';
  xmldocument.Encoding := 'UTF-8';
  xmldocument.Options := [doNodeAutoCreate, doNodeAutoIndent];
  xmlnode := xmldocument.AddChild('List');
  xmlnode.SetAttribute('Description','List Section');
  xmlnode := xmlnode.AddChild('ServerConfig');
  xmlnode := xmlnode.AddChild('AllowLogin');
  。
  这个地方如何写?
  xmldocument.SaveToFile(ConfigFile);