标签: c# dataset indexing
我正在使用Windows应用程序。
我使用dataadapter加载数据集。然后我将此数据集链接到我的表单中的控件(文本框)。 现在我想知道每次显示什么行。 感谢。
答案 0 :(得分:0)
我认为,你应该参考这篇文章
Binding
或尝试以下代码
BindingSource bs = new BindingSource(new your data set ,""); bs.Current will give you the current item in the your set.