private void LoadLeftLayoutFromFileButtonClick(object sender, RoutedEventArgs e)
 {
     using (this.leftScope = new LeftScope())
     {
         this.LoadLayoutFromFile(this.leftLayoutFileName);
     }
 }
Exemple #2
0
 private void LoadLeftLayoutFromFileButtonClick(object sender, RoutedEventArgs e)
 {
     using (this.leftScope = new LeftScope())
     {
         this.LoadLayoutFromFile(this.leftLayoutFileName);
     }
 }
 private void SaveLeftLayoutToFileButtonClick(object sender, RoutedEventArgs e)
 {
     using (this.leftScope = new LeftScope())
     {
         this.ignoredLeftPanesSerializationTagsWhenCleaning.Clear();
         this.SaveLayoutToFile(this.leftLayoutFileName);
         this.LoadLeftLayoutFromFileButton.IsEnabled = true;
     }
 }
 private void SaveLeftLayoutToFileButtonClick(object sender, RoutedEventArgs e)
 {
     using (this.leftScope = new LeftScope())
     {
         this.ignoredLeftPanesSerializationTagsWhenCleaning.Clear();
         this.SaveLayoutToFile(this.leftLayoutFileName);
         this.LoadLeftLayoutFromFileButton.IsEnabled = true;
     }
 }