WPF 列表框插入

发布于 2024-08-17 02:02:47 字数 157 浏览 8 评论 0原文

我在 DataTemplate 中定义了一个 WPF 列表框,其 ItemsSource 绑定到 ObservableCollection。当新项目添加到集合中时,我希望列表框在“插入模式”下工作,始终添加到列表的前面,而不是默认的附加模式。 当不直接在代码中添加列表框时,如何使列表框使用插入模式?

I have a WPF Listbox defined in a DataTemplate that has its ItemsSource bound to an ObservableCollection. When new items are added to the collection, I want the ListBox to work in "insert mode", always adding to the front of the list, not the default append mode.
How do I make the ListBox use the insert mode when not adding to it directly in code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

送君千里 2024-08-24 02:02:47

使用 ObservableCollectionInsert 方法并传递索引 0 - 这会将其添加到集合的开头。

Use the Insert method of the ObservableCollection and pass the index 0 - that will add it to the beginning of the collection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文