I would like to know how to save my user config for my selected USB devices. Whenever i restart the device it will load as i selected previously. is it advisable to save locally or in the usb storage?
Does this app note Store and retrieve settings and other app data applicable as types of app data mentioned works with USB adapter?
Updated:
When I selected the USB adapter from the listbox, I set the respective selected device accordingly.
private void audioCaptureList_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
recordPlayer.AudioDevice = captureDeviceList[audioCaptureList.SelectedIndex];
}
private void audioRenderList_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
mediaPlayer.AudioDevice = renderDeviceList[audioRenderList.SelectedIndex];
}