如何在c#中刷新数据绑定集合?

如何在c#中刷新数据绑定集合?,c#,wpf,data-binding,inotifypropertychanged,inotifycollectionchanged,C#,Wpf,Data Binding,Inotifypropertychanged,Inotifycollectionchanged,我正在写一个简单的wpf应用程序,但我被卡住了。我想实现的是,我有一个过滤器类,如果用户输入更改了过滤器类中的id,则应用过滤器时应该刷新列表。所有初始绑定都在工作。列表与公司ID一起正确显示 xaml中的数据绑定: <ListBox Height="212" HorizontalAlignment="Left" Margin="211,31,0,0" Name="listBoxProducts" VerticalAlignment="Top" Width="267" ItemsSourc

我正在写一个简单的wpf应用程序,但我被卡住了。我想实现的是,我有一个过滤器类,如果用户输入更改了过滤器类中的id,则应用过滤器时应该刷新列表。所有初始绑定都在工作。列表与公司ID一起正确显示

xaml中的数据绑定:

<ListBox Height="212" HorizontalAlignment="Left" Margin="211,31,0,0" Name="listBoxProducts" VerticalAlignment="Top" Width="267" ItemsSource="{Binding ElementName=this, Path=Products}" DisplayMemberPath="CompanyId" />  
<TextBox Height="28" HorizontalAlignment="Left" Margin="12,31,0,0" Name="textBoxCompanyId" VerticalAlignment="Top" Width="170" Text="{Binding ElementName=this, Path=Company.Id}" />
(虚拟)工厂类:

private IProductList _products;
    public IProductList Products 
    {
        get { return _products; }
    }

    private Company _company = new Company();
    public Company Company
    {
        get { return _company; }
    }

    public TestFactory()
    {
        _company = new Company() { Id = 2, Name = "Test Company" };
        GetProducts();
    }

    public void GetProducts()
    {
        var products = new List<Product>();
        products.Add(new Product() { ProductNumber = 1, CompanyId = 1, Name = "test product 1" });
        products.Add(new Product() { ProductNumber = 2, CompanyId = 1, Name = "test product 2" });
        products.Add(new Product() { ProductNumber = 3, CompanyId = 2, Name = "test product 3" });

        if (Company.Id != 2)
        {
            products = products.Where(p => p.CompanyId == Company.Id).ToList();
        }

        _products = new ProductList(products);
    }

    public void FilterChanging(object sender, EventArgs e)
    {
        GetProducts();
    }

列表在factory中刷新,但视图中没有更改。我可能做错了什么,也许我的整个方法不是最好的。也许我必须将ObservableCollection类型与valueconverter一起使用?任何帮助都将不胜感激。干杯

使用
可观察收集
而不是基于
IList创建自己的列表


<> > <代码> StababCeleCopy的目的是跟踪对集合的更改,当集合改变时,它将自动更新UI。

您也可以考虑使用ICLUPPORDVIEW用于此用例。


参考此内容。

我宁愿避免这种方法,必须有一种更简单的方法来实现这一点。如果我想实现ObservableCollection,我是否需要ValueConverter?我是否仍然需要订阅事件的函数来通知视图,集合中是否发生了一些更改?顺便说一句,我找到了解决我问题的办法,但我仍然不确定这是否正确。如果我像这样修改GetProducts(),它的工作方式是:…如果(_products!=null){u products.Clear();products.Where(product=>product.CompanyId===_company.Id).ToList().ForEach(product=>_products.Add(product));}else{u products=products;}你怎么看?@JahManCan No you not-
可观察集合
将自动告诉视图其集合是否已被修改。只需直接绑定到集合:
private IProductList _products;
    public IProductList Products 
    {
        get { return _products; }
    }

    private Company _company = new Company();
    public Company Company
    {
        get { return _company; }
    }

    public TestFactory()
    {
        _company = new Company() { Id = 2, Name = "Test Company" };
        GetProducts();
    }

    public void GetProducts()
    {
        var products = new List<Product>();
        products.Add(new Product() { ProductNumber = 1, CompanyId = 1, Name = "test product 1" });
        products.Add(new Product() { ProductNumber = 2, CompanyId = 1, Name = "test product 2" });
        products.Add(new Product() { ProductNumber = 3, CompanyId = 2, Name = "test product 3" });

        if (Company.Id != 2)
        {
            products = products.Where(p => p.CompanyId == Company.Id).ToList();
        }

        _products = new ProductList(products);
    }

    public void FilterChanging(object sender, EventArgs e)
    {
        GetProducts();
    }
public interface IProductList : IList<Product>, INotifyCollectionChanged {}
public class ProductList : IProductList
{
    private readonly IList<Product> _products;

    public ProductList() { }

    public ProductList(IList<Product> products)
    {
        _products = products;
    }


    public IEnumerator<Product> GetEnumerator()
    {
        return _products.GetEnumerator();
    }


    IEnumerator IEnumerable.GetEnumerator()
    {
        return GetEnumerator();
    }


    public void Add(Product item)
    {
        _products.Add(item);
        notifyCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Add, item));
    }


    public void Clear()
    {
        _products.Clear();
        notifyCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
    }


    public bool Contains(Product item)
    {
        return _products.Contains(item);
    }


    public void CopyTo(Product[] array, int arrayIndex)
    {
        _products.CopyTo(array, arrayIndex);
    }


    public bool Remove(Product item)
    {
        var removed = _products.Remove(item);

        if (removed)
        {
            notifyCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove, item));
        }
        return removed;
    }


    public int Count
    {
        get { return _products.Count; }
    }


    public bool IsReadOnly
    {
        get { return _products.IsReadOnly; }
    }


    public int IndexOf(Product item)
    {
        return _products.IndexOf(item);
    }


    public void Insert(int index, Product item)
    {
        _products.Insert(index, item);
        notifyCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
    }


    public void RemoveAt(int index)
    {
        _products.RemoveAt(index);
        notifyCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
    }


    public Product this[int index]
    {
        get { return _products[index]; }
        set
        {
            _products[index] = value;
            notifyCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Replace, _products[index]));
        }
    }


    public event NotifyCollectionChangedEventHandler CollectionChanged;
    private void notifyCollectionChanged(NotifyCollectionChangedEventArgs args)
    {
        if (CollectionChanged != null)
        {
            CollectionChanged(this, args);
        }
    }
}
public class Company : INotifyPropertyChanged
{
    private int _id;
    public int Id
    {
        get { return _id; }
        set 
        {
            if (_id == value)
                return;

            _id = value;
            OnPropertyChanged("Id");

            OnFilterChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
        }
    }

    private string _name;
    public string Name
    {
        get { return _name; }
        set
        {
            if (_name == value)
                return;

            _name = value;
            OnPropertyChanged("Name");
        }
    }


    public event PropertyChangedEventHandler PropertyChanged;
    public event EventHandler FilterChanged;

    private void OnPropertyChanged(string name)
    {
        if (PropertyChanged == null)
            return;

        var eventArgs = new PropertyChangedEventArgs(name);
        PropertyChanged(this, eventArgs);
    }

    private void OnFilterChanged(NotifyCollectionChangedEventArgs e)
    {
        if (FilterChanged == null)
            return;

        FilterChanged(this, e);
    }
}