CollectionViewSource 的延迟/延迟加载?
当您在 Resources
部分中创建 CollectionViewSource
时,资源初始化时(即当 Resources< /code> 持有者被初始化)或数据何时绑定?
有没有一种 xamly 方法可以使 CollectionViewSource
延迟加载?延迟加载?显式加载?
When you create a CollectionViewSource
in the Resources
section, is the set Source
loaded when the resources are initalized (i.e. when the Resources
holder is inited) or when data is bound?
Is there a xamly way to make a CollectionViewSource
lazy-load? deferred-load? explicit-load?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是,只要没有请求,
CollectionViewSource
就不会初始化其Source
属性!这是我的测试示例:
结果:仅当
ListView
取消注释时项目才会关闭。The answer is, that the
CollectionViewSource
does not initialize itsSource
property as long as not requested!Here is my test example:
Result: the project shuts-down only when the
ListView
is uncommented.