internal static void Replace(RichTextBox textBox)
 {
     _textBox = textBox;
     wFindDlg dlg = new wFindDlg(textBox.SelectedText, true, true);
 }
 internal static void Find(RichTextBox textBox)
 {
     _textBox = textBox;
     wFindDlg dlg = new wFindDlg(textBox.SelectedText, false, true);
 }