Exemplo n.º 1
0
 public bool SaveFileAs()
 => EditorLoadSave.SaveFileAs(this);
Exemplo n.º 2
0
 public bool SaveFileAs() => IfNotReadOnly(() => EditorLoadSave.SaveFileAs(this));
Exemplo n.º 3
0
 private void ExecuteSaveAsHtml(object sender, ExecutedRoutedEventArgs e) => EditorLoadSave.SaveFileAs(Editor, "html");
Exemplo n.º 4
0
 private void ExecuteSaveAsHtmlTemplate(object sender, ExecutedRoutedEventArgs e) => EditorLoadSave.SaveFileAs(Editor, "html-with-template");
        private static void Execute(object sender, ExecutedRoutedEventArgs e)
        {
            var mainWindow = (MainWindow)sender;

            EditorLoadSave.SaveFileAs(mainWindow.Editor, "html-with-template");
        }