예제 #1
0
 private void applicationEvents_Archive(IArchiver sender)
 {
     sender.PushSection("main.form");
     try
     {
         sender.ArchiveProperty("Top", this, 50);
         sender.ArchiveProperty("Left", this, 50);
         sender.ArchiveProperty("Width", this, 500);
         sender.ArchiveProperty("Height", this, 500);
         sender.ArchiveProperty("Checked", this.acShowTools, true);
         tools.Archive(sender, "Tools");
     }
     finally { sender.PopSection(); }
 }
예제 #2
0
 private void applicationEvents_Archive(IArchiver sender)
 {
     sender.PushSection("main.form");
     try
     {
         sender.ArchiveProperty("Top", this, 50);
         sender.ArchiveProperty("Left", this, 50);
         sender.ArchiveProperty("Width", this, 500);
         sender.ArchiveProperty("Height", this, 500);
         sender.ArchiveProperty("Checked", this.acShowTools, true);
         tools.Archive(sender, "Tools");
     }
     finally { sender.PopSection(); }
 }
예제 #3
0
 private void applicationEvents_Archive(IArchiver sender)
 {
     sender.PushSection("main.form");         
     try
     {
         sender.ArchiveProperty("Top", this, 50);                
         sender.ArchiveProperty("Left", this, 50);
         sender.ArchiveProperty("Width", this, 600);
         sender.ArchiveProperty("Height", this, 400);
     }
     finally
     {
         sender.PopSection();
     }
 }
예제 #4
0
 private void applicationEvents_Archive(IArchiver sender) {
   sender.PushSection( "Psl.Applications.ArchiverCluster" ) ;
   try {
     sender.ArchiveProperty( "ShowTools", acArchiverToolsVisible, "Checked", false ) ;
   } finally { sender.PopSection() ; }
 }