Winforms 中的数据绑定错误 -DataGridView

发布于 2024-12-11 00:07:28 字数 317 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

醉殇 2024-12-18 00:07:28

处理Winforms时没有DataGridView1.DataBindings(),它在Webforms中很实用。

只需删除最后一行并保留以下内容:

DataGridView1.DataSource=ds

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
(り薆情海 2024-12-18 00:07:28

也许您的意思是:

<罢工>
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

箜明 2024-12-18 00:07:28

使用 DataGridView1.Databind()

希望有帮助...

use DataGridView1.Databind()

hope that helped...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文