【问题标题】:ListView not updating when the bound ObservableCollection changes绑定的 ObservableCollection 更改时 ListView 不更新
【发布时间】:2016-04-22 03:03:05
【问题描述】:

我正在开发一个搜索窗口,它将搜索结果加载到 ObservableCollection 中,然后使用 ListView 显示结果。

在搜索完成后将 ListView 的 ItemSource 设置为 ObservableCollection 会正确填充列表。

我正在尝试在搜索添加其他结果时更新 ListView,但 ListView 根本没有填充任何数据。我不知道我的绑定在哪里掉了。

我的研究显示了使用 DataContext 的各种方法,但似乎没有任何帮助;我尝试使用 CodeBehind 以及在 xaml 窗口级别将其分配给“this”和我的 CachedData 类。

抱歉,sn-ps 代码太长了,我留下了我认为可能有助于为问题添加上下文的任何内容。

XAML:

<Window x:Class="SLX_Interface.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:SLX_Interface"
    mc:Ignorable="d"
    Title="SLX Search" Height="auto" Width="auto">
<Window.CommandBindings>
</Window.CommandBindings>
<Grid>
    <Grid.Resources>
        <local:CachedData x:Key="cachedData" />
    </Grid.Resources>
    <TabControl x:Name="tabControl" Grid.RowSpan="2" Margin="0,20,0,0">
        <TabItem Header="Accounts" Name="accountsTab">
            <Grid>
                <ListView x:Name="accountSearchResultsListView" Margin="5,32,5,30" DataContext="staticResource cachedData" ItemsSource="{Binding Path=accounts}" IsSynchronizedWithCurrentItem="True">
                    <ListView.View>
                        <GridView x:Name="accountSearchResultsGridView">
                            <GridViewColumn Header="SData Key" DisplayMemberBinding="{Binding SDataKey}"/>
                            <GridViewColumn Header="Account Name" DisplayMemberBinding="{Binding AccountName}"/>
                        </GridView>
                    </ListView.View>
                </ListView>
             </Grid>
        </TabItem>
    </TabControl>
</Grid>

MainWindow.xaml.cs 中的代码隐藏:

private async void SearchAccount(string searchTerm, string searchField, string searchOperator)
    {
        //Create the string we'll use for searching
        string urlString = "Stuff";

        //Create an ObservableCollection, then use it to blank the cache
        ObservableCollection<Account> resultsList = new ObservableCollection<Account>();
        CachedData.accounts = resultsList;

        //Getting data from the search using an XML Reader
        XmlReader resultsReader = null;

        try
        {
            //Using XmlReader to grab the search results from SLX
            XmlUrlResolver resultsResolver = new XmlUrlResolver();
            resultsResolver.Credentials = LoginCredentials.userCred;

            XmlReaderSettings resultsReaderSettings = new XmlReaderSettings();
            resultsReaderSettings.XmlResolver = resultsResolver;
            resultsReaderSettings.Async = true;

            resultsReader = XmlReader.Create(urlString, resultsReaderSettings);
        }
        catch (Exception error)
        {

        }

        //Grabbing data from the XML and storing it, hopefully updating the ListView as we go
        using (resultsReader)
        {
            while (await resultsReader.ReadAsync())
            {
                while (resultsReader.ReadToFollowing("slx:Account"))
                {
                    //Setting data from the XML to a new Account object ready to be passed to the list
                    Account account = new Account();
                    account.GUID = new Guid();

                    resultsReader.MoveToFirstAttribute(); account.SDataKey = resultsReader.Value;
                    resultsReader.ReadToFollowing("slx:AccountName"); account.AccountName = resultsReader.ReadElementContentAsString();

                    CachedData.accounts.Add(account);

                    //--Uncommenting this gives odd results;
                    //--The first item is displayed, any others aren't.
                    //--If there are a lot of items, the application eventually errors like mad and ends.
                    //--Looks like one error window for each item, though I don't see the message before they die along with the application.
                    //accountSearchResultsListView.ItemsSource = CachedData.accounts;
                }
            }
        }

        //--Uncommenting this works but shows the data once the entire XML has been read through, which can take some time so isn't ideal.
        //accountSearchResultsListView.ItemsSource = CachedData.accounts;        }

上面的类引用,存储在单独的 .cs 文件中,但在相同的命名空间下:

public class CachedData
{
    public static ObservableCollection<Account> accounts { get; set; }

    public static event PropertyChangedEventHandler PropertyChanged;

    public static event EventHandler<PropertyChangedEventArgs> StaticPropertyChanged = delegate { };
    private static void NotifyStaticPropertyChanged(string propertyName)
    {
        StaticPropertyChanged(null, new PropertyChangedEventArgs(propertyName));
    }
}

public class Account : IEquatable<Account>
{
    public Guid GUID { get; set; }
    public string SDataKey { get; set; }
    public string AccountName { get; set; }

    public override string ToString()
    {
        return AccountName;
    }

    public override bool Equals(object obj)
    {
        if (obj == null) return false;
        Account objAsPart = obj as Account;
        if (objAsPart == null) return false;
        else return Equals(objAsPart);
    }

    public override int GetHashCode()
    {
        return 0;
    }

    public bool Equals(Account other)
    {
        if (other == null) return false;
        return (GUID.Equals(other.GUID));
    }
}

感谢您提供的任何帮助,这已经困扰了我好几天了。

【问题讨论】:

    标签: c# wpf xaml listview data-binding


    【解决方案1】:

    问题是您使用的是 ObservableCollection,它在内部实现了 INotifyCollectionChanged。这不会引发对集合的所有更改。只有在从集合中添加或删除项目时,它才会引发集合更改。

    所以如果有人分配一个新的集合实例会发生什么问题(作为你的情况)。所以重置绑定并不是一个很好的选择,而是您可以自己提高更改。通过简单地实现 INotifyPropertyChanged。(通常情况)

    public class DataClass : INotifyPropertyChanged
    {
    
        public event PropertyChangedEventHandler PropertyChanged;
    
        public void OnPropertyChanged(string propertyName)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }
    
    
        private ObservableCollection<string> collection;
    
        public ObservableCollection<string> Collection
        {
            get { return collection; }
            set
            {
                collection = value;
                OnPropertyChanged("Collection");
            }
        }       
    }
    

    因此将集合分配给 null 或新实例 也会反映到绑定控件。 (您已经拥有 NotifyStaticPropertyChanged,您只需要创建一个完整的属性并在需要时提出更改。)

    【讨论】:

      【解决方案2】:

      当您在 xaml 中设置数据绑定时,将绑定应用启动时存在的 ObservableCollection 实例。因此,请在应用程序启动之前实例化一个实例,并且不要用新实例替换它,除非您在后面的代码中重置数据绑定。如果需要清除其元素,请使用 Clear 方法。

      【讨论】:

      • 做到了,我删除了“重置”,它工作正常。现在使用 .Clear 函数重置列表。由于对象没有被实例化,我一开始确实遇到了对象引用错误,通过遵循这里的答案来解决这个问题:stackoverflow.com/questions/15895763/… 感谢您的帮助!
      猜你喜欢
      • 1970-01-01
      • 2014-11-02
      • 2019-10-25
      • 1970-01-01
      • 2016-08-24
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多