private void ComboBoxPort_SelectedIndexChanged(object sender, EventArgs e) { transceiverController.disconnect(); if (comboBoxPort.SelectedIndex != -1) { transceiverController.config.updateFromForm(this); transceiverController.connect(); } }
private void initServices() { if (config.transceiverController.transceiverType != 0) { transceiverController.connect(); } if (config.watchAdifLog) { adifLogWatcher.start(config.watchAdifLogPath); } else { adifLogWatcher.stop(); } }