Winforms 中的数据绑定错误 -DataGridView
我是 VB.NET、Windows 应用程序和 DataGridView 的新手。 这是我现在正在遭受的一个非常基本的错误。我有一个存储过程来从数据库中检索数据。我将这些数据存储在 DataSet 中,并尝试在 DataGridView 中查看它。我使用此代码进行数据绑定,该代码抛出错误:
DataGridView1.DataSource=ds
DataGridView1.DataBindings()
代码中的第二行抛出错误:
属性访问必须分配给属性或使用其值。
我该如何解决这个问题?
I'm new to VB.NET, Windows Application, and DataGridView.
This is a very basic error which I'm suffering now. I have a stored procedure to retrieve data from the database. I stored those data in a DataSet and tried to view it in a DataGridView. I used this code for databinding which is throwing the error:
DataGridView1.DataSource=ds
DataGridView1.DataBindings()
The second line in the code is throwing an error:
Property access must assign to the property or use its value.
How can I solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
处理Winforms时没有
DataGridView1.DataBindings()
,它在Webforms中很实用。只需删除最后一行并保留以下内容:
There is no
DataGridView1.DataBindings()
when dealing with Winforms, it's practical in Webforms.Just remove the last line and leave the following:
也许您的意思是:
<罢工>
DataGridView1.DataSource=ds
<罢工>
DataGridView1.DataBind()
编辑:
您没有提供足够的代码来检查一切是否就位,但我建议您按照自己的方式进行操作:http://msdn.microsoft.com/en-us/library/fbk67b6z.aspx
Perhaps you meant:
DataGridView1.DataSource=ds
DataGridView1.DataBind()
EDIT :
You haven't provided enough code to check that everything is in place, but I suggest you work your way through this: http://msdn.microsoft.com/en-us/library/fbk67b6z.aspx
使用
DataGridView1.Databind()
希望有帮助...
use
DataGridView1.Databind()
hope that helped...