/// <summary> /// Show a window containing the current note formatted according to Textile syntax. /// </summary> private void Textile_Click(object sender, RoutedEventArgs e) { var outputWindow = new OutputWindow(CurrentNote, OutputType.Textile); outputWindow.Show(); }
/// <summary> /// Show a window containing the current note formatted according to Markdown syntax. /// </summary> private void Markdown_Click(object sender, RoutedEventArgs e) { var outputWindow = new OutputWindow(CurrentNote, OutputType.Markdown); outputWindow.Show(); }