对绑定到 ObservableCollection 的列表框进行排序
如何对我的列表框内容进行排序?在我看来,仅将其保留在 UI 层上更有意义,因为排序不会影响我的业务逻辑,因此它可能位于 xaml 或代码隐藏中。但我不知道到底该怎么做。
How would one go about sorting my listbox contents? It seems to me that it would make more sense to keep this only on the UI layer since sorting won't affect my business logic, so it probably goes in the xaml or code-behind. I can't figure out what to do exactly though.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要使用
CollectionView
< /a> 为此。要在 XAML 中进行排序,您可以使用
CollectionViewSource
类;来自 MSDN 的示例:You will want to use a
CollectionView
for that.To do sorting in XAML you can use the
CollectionViewSource
class; Example from MSDN: