Exemple #1
0
 public void ToggleHelp()
 {
     if (_editorState.StateSaved)
     {
         _editorState.Restore(this);
         ExecuteAutoSave();
         return;
     }
     _editorState.Save(this);
     Text = TranslationProvider.LoadHelp();
     EditBox.IsModified = false;
     DisplayName        = "Help";
 }