对绑定到 ObservableCollection 的列表框进行排序

发布于 2024-11-03 16:37:19 字数 91 浏览 1 评论 0原文

如何对我的列表框内容进行排序?在我看来,仅将其保留在 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 技术交流群。

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

发布评论

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

评论(1

娇俏 2024-11-10 16:37:20

您将需要使用 CollectionView< /a> 为此。

private void Button1_Click(object sender, RoutedEventArgs e)
{
    ICollectionView view = CollectionViewSource.GetDefaultView(SomeCollection);
    view.SortDescriptions.Add
    (
        new SortDescription("Name", ListSortDirection.Descending)
    );
}

要在 XAML 中进行排序,您可以使用 CollectionViewSource 类;来自 MSDN 的示例:

<src:Places x:Key="places"/>

<CollectionViewSource Source="{StaticResource places}" x:Key="cvs">
  <CollectionViewSource.SortDescriptions>
    <scm:SortDescription PropertyName="CityName"/>
  </CollectionViewSource.SortDescriptions>
  <CollectionViewSource.GroupDescriptions>
    <dat:PropertyGroupDescription PropertyName="State"/>
  </CollectionViewSource.GroupDescriptions>
</CollectionViewSource>

<ListBox ItemsSource="{Binding Source={StaticResource cvs}}"
         DisplayMemberPath="CityName" Name="lb">

You will want to use a CollectionView for that.

private void Button1_Click(object sender, RoutedEventArgs e)
{
    ICollectionView view = CollectionViewSource.GetDefaultView(SomeCollection);
    view.SortDescriptions.Add
    (
        new SortDescription("Name", ListSortDirection.Descending)
    );
}

To do sorting in XAML you can use the CollectionViewSource class; Example from MSDN:

<src:Places x:Key="places"/>

<CollectionViewSource Source="{StaticResource places}" x:Key="cvs">
  <CollectionViewSource.SortDescriptions>
    <scm:SortDescription PropertyName="CityName"/>
  </CollectionViewSource.SortDescriptions>
  <CollectionViewSource.GroupDescriptions>
    <dat:PropertyGroupDescription PropertyName="State"/>
  </CollectionViewSource.GroupDescriptions>
</CollectionViewSource>

<ListBox ItemsSource="{Binding Source={StaticResource cvs}}"
         DisplayMemberPath="CityName" Name="lb">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文