private static void ExecutedCopyRoutedCommand(object sender, ExecutedRoutedEventArgs e)
        {
            RichTextBoxEx richTextBoxEx = sender as RichTextBoxEx;

            if (richTextBoxEx != null)
            {
                richTextBoxEx.Copy();
                e.Handled = true;
            }
        }