private void EnableStopButton()
 {
     BtStopSearch.Invoke(new Action(() => BtStopSearch.Enabled = true));
 }
 private void DisableStopButton()
 {
     BtStopSearch.Invoke(new Action(() => BtStopSearch.Enabled = false));
 }