Exemplo n.º 1
0
 internal DappleView(string strFile)
 {
     this.doc = new dappleviewDoc();
      this.dappleView = new dappleviewType(doc.Load(strFile));
 }
Exemplo n.º 2
0
 internal void Save(string strFile)
 {
     this.doc = new dappleviewDoc();
      doc.Save(strFile, this.dappleView);
 }
Exemplo n.º 3
0
 internal DappleView()
 {
     this.doc = new dappleviewDoc();
      this.dappleView = new dappleviewType(doc.CreateRootElement("", "dappleview"));
 }