Go forwards and backwards on FM radio frequency
问题 I have already designed a back button and a forward button with xaml. When I click the back button, my FM radio instance should start looking for a radio frequency below the radio frequency according to signal strength. 回答1: hi there is code to do that private void FastForwardButton_Click(object sender, RoutedEventArgs e) { try { do { ManageFrequencyChange(0.1); } while (FMRadio.Instance.SignalStrength * 100 < 65); } catch (RadioDisabledException ex) { } } and refrence for these private void