private void UpdateDeviceList()
        {
            var devices = DeviceFinder.GetDeviceList();

            this.DeviceList.Clear();

            devices.ForEach(d => this.DeviceList.Add(d));
            this.deviceCombo.SelectedIndex = 0;

            if (this.DeviceList.Contains(this.selectedDevice))
            {
                this.deviceCombo.SelectedItem = this.selectedDevice;
            }
        }