0

我有一个不可编辑的组合框来显示 SQL 数据库的所有表。

 <ComboBox Grid.Column="1" 
                      Grid.Row="2" 
                      Height="23"  
                      Margin="3,3,3,3" Name="cbLogTable" VerticalAlignment="Top"
                      ItemsSource="{Binding}"
                      TextSearch.TextPath="TABLE_NAME"
                      SelectedValue="{Binding Path=LogTable, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay, ValidatesOnDataErrors=True}"
                      >
                <ComboBox.ItemTemplate>
                    <DataTemplate>
                        <StackPanel>
                            <TextBlock Text="{Binding Path=TABLE_NAME}"/>
                        </StackPanel>

                    </DataTemplate>
                </ComboBox.ItemTemplate>
            </ComboBox>

包含 UserControl 的属性看起来像这样,并且还实现了 INotifyPropertyChanged:

    public string LogTable
    {
        get
        {
            return _logTable;
        }
        set
        {
            if (_logTable == value) return;
            _logTable = value;
            OnPropertyChanged("LogTable");
        }
     }

我使用以下数据绑定来填充 ComboBox:

    private void UpdateLogTable()
    {
        var connection = new SqlConnection(_connectionString);
        connection.Open();
        DataTable t = connection.GetSchema("Tables");
        cbLogTable.DataContext = t;
        connection.Close();
    }

但是我没有收到关于更改组合框的选定值的 PropertyChanged 通知。我的错在哪里?

4

1 回答 1

2

在绑定中SelectedValue

SelectedValue="{Binding Path=LogTable, 
                        UpdateSourceTrigger=PropertyChanged,
                        Mode=TwoWay,
                        ValidatesOnDataErrors=True,
                        RelativeSource={RelativeSource FindAncestor,
                                        AncestorType={x:Type UserControl}}}"

否则,绑定正在寻找类型的LogTable属性DataTable(这是 Combobox 的 DataContext),并且静默失败。

于 2012-05-06T20:02:05.557 回答