带转换器的 SortDescription
我有 list
Person 有 ID,类似:12231d4sa32fd
我有一个转换器,可以将 ID 转换为状态:(就绪/等待/不在这里)。
我在 ListView 中显示列表。
问题:如何按人员状态对 ListView 进行排序?
I have list<Person> Persons
Person has ID, something like that:12231d4sa32fd
I have a converter that convert the ID to Status: (Ready/Waiting/NotHere).
I show the list in a ListView.
Question: How can I sort the ListView by the Person's status ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种选择是将
Status
属性添加到您的Person
类型,然后绑定到网格中的该属性。如果您不希望向模型添加Status
属性,则可以使用此附加属性创建PersonViewModel
来代替,并将网格绑定到 <代码>PersonViewModel。One option is to add a
Status
property to yourPerson
type and bind to that in your grid instead. If you don't wish to add aStatus
property to your model, then you could create aPersonViewModel
instead with this additional property, and bind your grid to a collection ofPersonViewModel
.