private void Action_Search(Actions command)
 {
     using (SearchDialog form = new SearchDialog(this, false))
         form.ShowDialog(this);
 }
 private void Action_SearchOriginal(Actions command)
 {
     using (SearchDialog form = new SearchDialog(this, true))
         form.ShowDialog(this);
 }