Ejemplo n.º 1
0
 private void LoadDocument()
 {
     if (File.Exists(TempFile))
     {
         var xml = XElement.Load(TempFile);
         DevLoader.LoadInto(xml, _theEditor.EditorContext);
     }
 }
Ejemplo n.º 2
0
 private void SaveDocument()
 {
     DevLoader.SaveIntoElement(_theEditor.EditorContext).Save(TempFile);
 }