不重新设置 WPF 时,组合框值不会保留为以前的值

Combobox value does not stay as previous value when not re-set WPF

我已经阅读了相关问题,但我的问题仍然存在。 我正在尝试从组合框中选择一个数据库连接,如果连接失败,请将组合值切换回前一个。 代码:

 public string SelectedConnStringValue
    { 
        get { return _selectedConnStringValue; }
        set
        {
            if (!DBConn.Instance.Open(value))
            {
                System.Windows.MessageBox.Show("Attempt failed", "Error!", MessageBoxButton.OK, MessageBoxImage.Error);
            }
            else
            {
                DBConn.Instance.Close();
                _selectedConnStringValue = value;
                DefaultConf.Instance.DefaultConnectionStringName = value;
            }
            OnPropertyChanged("SelectedConnStringValue");
        }
    }


    protected virtual void OnPropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));

    }

XAML

 <ComboBox x:Name="serversComboBox" SelectedValuePath="Name" DisplayMemberPath="Name" Width="120" Margin="672,0,0,0" Height="25" 
            ItemsSource="{Binding Path=Connections}" Text="{Binding SelectedConnStringValue}"/>

问题是当我尝试输入错误的连接字符串时。然后我想将组合值重新选择为前一个,因此根本不更新它,但它不起作用。我试过做 RaisePropertyChanged("SelectedConnStringValue"); 而不是 OnPropertyChanged,但它什么都不做

使用 SelectionChanged 事件并将 SelectedItem 分配给上一个 selectedItem。

属性绑定到依赖项 属性,并且在给定场景中 Dependency Property 中的值已更改。 setter 将无法还原 control/combobox 中的值,除非您再次分配它。

private void comboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        var comboBox = sender as ComboBox;
        var selctedItem = comboBox?.SelectedItem as TestModel;
        if (selctedItem != null && selctedItem.Equals("Test2"))
        {
            comboBox.SelectedItem = previousSelected;
        }
    }