问题描述
假设我有一个像这样的数据表:
Suppose I have a datatable like this:
DataTable dt = new DataTable("Woot");
dt.Columns.AddRange(new DataColumn[]{
new DataColumn("ID",typeof(System.Guid)),
new DataColumn("Name",typeof(String))
});
当我尝试将控件绑定到它时:
When I try to bind a control to it:
this.txtName.DataBindings.Add("Text", _dtRow, "Name");
我收到此异常:
任何想法为何都可以在由dataAdapter创建的数据表上使用,但不能在以编程方式创建的表上使用
Any idea why this works on a datatable created by a dataAdapter, but not on a programmaticly created one?
推荐答案
好吧,弄乱了一段时间的代码后,我一直感到困惑。然后我终于意识到了这个问题。我假设_dtRow是DataRow。您需要引用实际的数据表(dt)。
OK, after messing with your code for a while, I kept getting stumped. Then I finally realized the issue. I'm assuming _dtRow is a DataRow. You need to reference the actual DataTable (dt).
this.textBox1.DataBindings.Add("Text", dt, "Name");
编辑:看到您对Igor帖子的评论后。如果绑定到dt,例如说如果您有一个绑定到此DataTable的datagridview,则每次选择不同的行时,文本框都会更改。
After seeing your comment on Igor's post. If you bind to dt, then say for example if you have a datagridview bound to this DataTable, every time you select a different row, the textbox will change.
适用于我的代码:
DataTable dt = new DataTable("Woot");
dt.Columns.AddRange(new DataColumn[]{
new DataColumn("ID",typeof(System.Guid)),
new DataColumn("Name",typeof(String))
});
dt.Rows.Add(Guid.NewGuid(), "John");
dt.Rows.Add(Guid.NewGuid(), "Jack");
this.dataGridView1.DataSource = dt;
this.textBox1.DataBindings.Add("Text", dt, "Name");
更改DGV中的行,您将看到文本框更改文本。
Change rows in the DGV and you'll see the textbox change text.
EIDT再次好,该黑客了。这就是我的工作方式:
EIDT AGAIN OK, time to hack it. This is how I got it to work:
this.textBox1.DataBindings.Add("Text",_dtRow.ItemArray[1], "");
我使用了索引1,但是您可以使用数组中需要的任何索引。
I used index 1, but you can use whatever index you need in the array.
这篇关于数据绑定到以编程方式创建的DataTable的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!