Beispiel #1
0
        private void btnViewLog_Click(object sender, RoutedEventArgs e)
        {
            OperationLogWindow win = new OperationLogWindow();

            win.ShowDialog();
        }
Beispiel #2
0
 /// <summary>
 /// [EDITOR ONLY]
 /// Displays a dialogue window with the log contents and an option to export the log to a file
 /// </summary>
 public static void ShowOperationLogWindow(string title, System.Text.StringBuilder log)
 {
     OperationLogWindow.ShowWindow(title, log);
 }