- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个搜索窗口,它将搜索结果加载到 ObservableCollection 中,然后使用 ListView 显示结果。
搜索完成后将 ListView 的 ItemSource 设置为 ObservableCollection 可以正确填充列表。
我试图让 ListView 在搜索添加其他结果时更新,但 ListView 根本不填充任何数据。我不知道我的绑定(bind)在哪里掉落。
我的研究展示了使用 DataContext 的各种方法,但似乎没有一个有帮助;我尝试使用 CodeBehind 以及 xaml 窗口级别将其分配给“this”和我的 CachedData 类。
抱歉,代码片段很长,我留下了我认为可能有助于为问题添加上下文的任何内容。
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));
}
}
感谢您提供的任何帮助,这已经困扰了我好几天了。
最佳答案
问题是您正在使用ObservableCollection,它在内部实现INotifyCollectionChanged。这不会引发对集合的所有更改。仅当在集合中添加或删除项目时,它才会引发集合更改。
所以问题就出现了,如果有人分配一个新的集合实例(根据您的情况)会发生什么。因此,重置绑定(bind)并不是一个很好的选择,而是您可以自己进行更改。通过简单地实现 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或新实例也会反射(reflect)到绑定(bind)控件。 (您已经拥有 NotifyStaticPropertyChanged,您只需要创建一个完整的属性并在需要时引发更改。)
关于c# - 当绑定(bind)的 ObservableCollection 更改时 ListView 不更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34829368/
这是一个有趣的案例,我无法在网上找到任何信息。我正在尝试创建一个网格,需要将 ObservableCollection 的 ObservableCollection 绑定(bind)到它。想象这样一个
如何复制ObservableCollection项目到另一个 ObservableCollection没有引用第一个集合?这里ObservableCollection影响两个集合的项目值更改。 代码
public class Alpha { public ObservableCollection Items { get; set; } public Alpha() {
我只是想知道如何拥有父集合的子集合? 例如, 我已经有一个 ObservableCollection 产品,它正在添加并正确绑定(bind)到 XAML。但是,现在我需要另一个包含产品项目的 Obse
我对 Silverlight 体验相对较新,我正在尝试创建一个带有 DomainService 的 MVVM 应用程序,该应用程序将 POCO 作为模型返回。我有一个 UserControl,它有一个
查看 Microsoft 站点上的 Windows 运行时引用,我能找到的唯一相关集合是 IObservableVector 。 .NET Projection ObservableCollectio
我正在尝试获取值“thisValueIwant”。有没有可能如此容易地获得这个值(value)?或者也许这两个 ObservableCollection 有另一种解决方案 public class F
我有一个 ObserveableCollection,其中包含另一个 ObserveableCollection。在我的 WPF 中,我设置了对 Persons.Lectures 的绑定(bind)。
我有一个包含 20 个项目(图像)和按钮(“下一个”)的 observablecollection。我如何获得像 observablecollection.next() 和 observablecol
我有一个 ObservableCollection . T 有一个 ToString() 方法。我想做的是转换 ObservableCollection至 ObservableCollection .
我有一个 DataGrid,它绑定(bind)到 ViewModel 中的一个 ObservableCollection。这是一个搜索结果DataGrid。问题是,在我更新搜索结果 Observabl
有一堆ObservableCollection Result并要求将它们全部组合成另一个 ObservableCollection AllResults所以我可以在 listview 中显示它. 只是
哪个是保存我的数据的更好解决方案,还是取决于某些条件? 示例情况 1: 您需要显示一个数据列表,选择后可以在新窗口中修改。 示例情况 2: 您需要显示可以在此列表中修改的数据列表。 最佳答案 当您使用
从 xml 中执行 ViewModel 的最佳方法是什么:
所以我有一个 BaseClass 以及继承自基类的几个子类 ChildClass1 ChildClass2 我有ObservableCollections需要就地排序的子类,我无法创建新的 Obser
我为 ObservableCollection 构建了一个简单的扩展方法 AddRange: using System; using System.Collections.Generic; using
我的情况是,我有“tablegenerateModel”类的 ObservableCollection,该类进一步包含“column_Data”类的 ObservableCollection,并且这个
我将有一个 7 个小“购物 list ”,然后是一个包含 7 个小 list 中所有项目的大 list 。 是否可以使用 databind 和 observablecollection,以便从小列表中
当所述 ObservableCollection 从 View 模型公开时,我无法找到正确的绑定(bind)语法来绑定(bind) ObservableCollection 中包含的项目的属性。 当我
我有以下类(class),效果很好 public class RemoteSource { ObservableCollection remote; string[] _servers
我是一名优秀的程序员,十分优秀!