如何在c#.net中使用Sql数据源创建控件
我想知道如何使用 Datasource 在 Winforms 中创建控件。我的意思是表中应创建为 Form 控件的任何字段。我已经看到,通过拖放这些文件,它可以创建控件。它是如何工作的?
I want to know how to create controls in Winforms using Datasource.I mean whatever fields in table that should be created as control in Form . I have seen that by drag and drop those fileds it create control .How its working like that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您提到的行为可以使用 Visual Studio 中的数据源窗口来完成。以下标题为数据源窗口的 MSDN 将引导您完成所需的所有步骤执行您想要的操作,从连接到数据库到设置将数据源拖到表单上时显示的控件。
The behavior that you mention can be done using he Data Source Window in Visual Studio. The following MSDN titled Data Sources Window will take you through all the steps needed to do what you want from connecting to a database to setting what controls show when you drag the data source onto the form.
您可以使用像 my Generation 这样的源代码生成器
加上 winforms 的生成器模板。
You can use a sourcecodegenerator like mygeneration
plus a generator template for winforms.