ItemsSource更改时,ComboBox不会更新

时间:2015-10-14 13:10:23

标签: c# wpf mvvm

我有一个绑定到List<string>的ComboBox。当List更改时,ComboBox不会,即使引发了PropertyChanged。调试时,我发现列表属性甚至被读取。

可以使用以下代码重现错误:

XAML

<Window x:Class="ComboBoxTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="90" Width="400">
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition/>
            <ColumnDefinition/>
        </Grid.ColumnDefinitions>
        <ComboBox ItemsSource="{Binding Source, Mode=OneWay}"/>
        <Button Grid.Column="1" Content="add string" Command="{Binding}" CommandParameter="Add"/>
    </Grid>
</Window>

背后的代码

using System.Windows;

namespace ComboBoxTest
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            DataContext = new ViewModel();
        }
    }
}

ViewModel

using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Windows.Input;

namespace ComboBoxTest
{
    class ViewModel : INotifyPropertyChanged, ICommand
    {
        public ViewModel()
        {
            Source = new List<string>();
            Source.Add("Test1");
            Source.Add("Test2");
            Source.Add("Test3");
        }

        private List<string> _Source;

        public List<string> Source
        {
            get { return _Source; }
            set
            {
                _Source = value;
                OnPropertyChanged("Source");
            }
        }

        private void OnPropertyChanged(string property)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(property));
            }
        }

        public event PropertyChangedEventHandler PropertyChanged;

        public bool CanExecute(object parameter)
        {
            return true;
        }

        public event System.EventHandler CanExecuteChanged;

        public void Execute(object parameter)
        {
            if ((string)parameter == "Add")
            {
                Source.Add("New string");
                OnPropertyChanged("Source");
            }
        }
    }
}

为什么ComboBox没有更新?

1 个答案:

答案 0 :(得分:2)

ComboBox不会更新,因为它在检查List时没有看到任何更改。引用保持不变,并且ComboBox不会被告知List内的更改。

重构代码以使用ObservableCollection代替List将解决问题,因为ObservableCollection实现了INotifyCollectionChanged,有必要通知查看对象内部的更改