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