Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个ListView我不断添加项目的。
ListView
我可以在ListView添加项目时滚动。
但是,在 中选择一个项目后,在ListView添加项目时我无法滚动。对于我调用的每个 ListView.Items.Add(Object),我将恢复到最初选择的项目的焦点。
清除 SelectedItems 和 SelectedIndices 后,我仍然可以继续向下滚动,ListView因为我会在添加项目时不断弹回最初选择的项目。
谁能建议如何解决这个问题?
谢谢你。
问候,迈克尔
如果您使用的是 WPF,您使用的是ObservableCollection? 听起来 DataContext 正在更改导致 ListView 重新加载。如果你绑定到一个ObservableCollection你可能会有更多的运气。
ObservableCollection
I am using parcel to cache Items in binary file. Everything was fine until I need to store into single ArrayList various type of objects:
ArrayList
fou