当前位置: 代码迷 >> C# >> WPF的ListBox排序有关问题
  详细解决方案

WPF的ListBox排序有关问题

热度:6612   发布时间:2013-02-25 00:00:00.0
WPF的ListBox排序问题
ListBox.Items.SortDescriptions.Add(new System.ComponentModel.SortDescription("Order", System.ComponentModel.ListSortDirection.Ascending));

根据项的Order属性排序
第一次加入Item的时候,排序是正常的
但是当列表项加载完毕后,再更改这些项的Order属性,ListBox并不会重新排序
使用了ListBox.Items.Refresh()也不行
怎么解决?

------解决方案--------------------------------------------------------
ListBox.Items.SortDescriptions.Clear()
ListBox.Items.SortDescriptions.Add(...)
  相关解决方案