SharpDevelop,如何添加数据源?
我正在尝试完成 C# 作业课程。 我应该将数据源添加到数据网格视图控件。 然而,在Sharp Develop中,通用任务菜单下的数据源对话框无法添加数据源。
这显然与 VS 的工作方式不同。 有人可以帮我弄清楚如何在 SharpDevelop 中执行此操作吗?
I am attempting to complete a homework lesson in C#. I am supposed to add a datasource to a Datagrid view control. However, in Sharp Develop under the common task menu the datasource dialog has no way to add a DataSource.
This apparently is different than how VS works. Can someone help me figure out how to do this in SharpDevelop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用显式绑定以编程方式添加数据源。 例如,在
FormLoad
事件期间(引入显式 BindingSource):You can add the datasource programatically, using explicit binding. For example, during the
FormLoad
event (introducing an explicit BindingSource):