在设计视图中将控件绑定到数据源与在代码中将其绑定有区别吗?
使用一种方法与另一种方法之间有区别吗?您可以在代码中绑定它,调用适当的方法,也可以通过选择要绑定的数据源使用设计视图来绑定它。
几乎在处理任何 .NET 项目时,这两个选项在处理数据时始终可用。
除了控制台应用程序之外,但那是另一回事了。
Is there a difference between using one method over the other. You can either bind it in code, calling the appropiate method, or you can bind it using the design view by selecting a datasource to bind to.
Pretty much when working with any .NET project these two options are always available when working with data.
Exept for console apps, but thats a different story.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设计者生成的代码执行的操作与您手动执行的操作几乎相同;它使用的 API 与您使用的 API 相同。当然,你可以随时查看设计师做了什么来仔细检查。
设计者做事可能不像人类那样严格,但如果你将编译器和 JIT 优化纳入考虑范围,我希望代码是等效的。
所以最后我想说这是一个偏好和方便的问题。
The designer-generated code does pretty much the same things you would do manually; it uses the same APIs you would use. Of course you can always look at what the designer does to double check.
It might be that the designer does things not as tightly as a human would, but if you throw the compiler and JIT optimizations into the picture I expect the code to be equivalent.
So in the end I 'd say its a matter of preference and convenience.