如何将 DataTable.Select() 的结果绑定到 ListBox 控件?

How do I bind the result of DataTable.Select() to a ListBox control?(如何将 DataTable.Select() 的结果绑定到 ListBox 控件?)
本文介绍了如何将 DataTable.Select() 的结果绑定到 ListBox 控件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码:

ListBox.DataSource = DataSet.Tables("table_name").Select("some_criteria = match")
ListBox.DisplayMember = "name"

DataTable.Select() 方法 返回 System.Data.DataRow 对象.

The DataTable.Select() method returns an array of System.Data.DataRow objects.

无论我在 ListBox.DisplayMember 属性中指定什么,我所看到的只是具有正确数量的项目的 ListBox 全部显示为 System.Data.DataRow我想要的值在 "name" 列中!

No matter what I specify in the ListBox.DisplayMember property, all I see is the ListBox with the correct number of items all showing as System.Data.DataRow instead of the value I want which is in the "name" column!

是否可以从 DataTable.Select() 绑定到结果数组,而不是循环遍历它并将每个数组添加到 ListBox?

Is it possible to bind to the resulting array from DataTable.Select(), instead of looping through it and adding each one to the ListBox?

(我对循环没有问题,但似乎不是一个优雅的结局!)

(I've no problem with looping, but doesn't seem an elegant ending!)

推荐答案

使用 DataView 代替.

ListBox.DataSource = new DataView(DataSet.Tables("table_name"), "some_criteria = match", "name", DataViewRowState.CurrentRows);
ListBox.DisplayMember = "name"

这篇关于如何将 DataTable.Select() 的结果绑定到 ListBox 控件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
quot;Overflowquot; compiler error with -9223372036854775808L(编译器错误-9223372036854775808L(Q;溢出Q))
Visual Studio 2010 ReportViewer Assembly References(Visual Studio 2010 ReportViewer程序集引用)
Weird behaviour when I open a reportviewer in WPF(在WPF中打开报表查看器时出现奇怪的行为)