private void Click_Into_Original(object sender, MouseButtonEventArgs e)
 {
     string o = Auxiliary.StringFromRichTextBox(RichTextBox_Original);
     if ( o.StartsWith("Original Text") )
     {
         RichTextBox_Original.Document.Blocks.Clear();
     }
 }
        // update status end

        private void Click_Deidentify(object sender, RoutedEventArgs e)
        {
            // status is not working, can someone please help me fix this?
            //Thread updaterTh = new Thread(new ThreadStart(UpdateThread));
            //updaterTh.Start();

            try
            {
                string tempFile = Path.GetTempFileName();
                File.WriteAllText(tempFile, Auxiliary.StringFromRichTextBox(RichTextBox_Original));
                Auxiliary.FileDeidentify(TextBox_Replacement.Text, this.outputFile, tempFile, Label_Status);
                File.Delete(tempFile);
                this.jsonFile = Auxiliary.SetJSONFilename(tempFile);
                myBrowser.Navigate(this.outputFile);
            } catch( Exception ex)
            {
                MessageBox.Show(ex.ToString(), "Exception #18293");
            }
        }
 private void Click_Close(object sender, RoutedEventArgs e)
 {
     Auxiliary.DeleteTempFiles(this.tempDir);
     Close();
 }
 public MainWindow()
 {
     InitializeComponent();
     ResetDefaults();
     Auxiliary.DeleteTempFiles(this.tempDir);
 }
 private void Window_Closing(object sender, EventArgs e)
 {
     Auxiliary.DeleteTempFiles(this.tempDir);
 }
 private void Click_Debug(object sender, RoutedEventArgs e)
 {
     string browserPath = Auxiliary.GetPathToDefaultBrowser();
     Process.Start(browserPath, this.jsonFile);
 }