Delphi Prism - 数据模块 - 数据绑定
Delphi Prism XE 中 Datamodule 的等效项是什么?使用 Delphi Prism XE 的 Winform 应用程序如何支持数据绑定?
What is the equivalent for Datamodule in Delphi Prism XE? How data binding is supported in Winform applications using Delphi Prism XE?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于你的第一个问题
在.NET中没有delphi
Datamodule
。
现在关于数据绑定。
.net 中 Winforms 控件和数据源之间的数据绑定是使用
DataBindings
属性存在于大多数 winforms 可视控件中。阅读这些文章以获取有关此主题的更多信息。
About you first question
In .NET there is no such thing as a delphi
Datamodule
.Now about the data binding.
The data binding in .net between Winforms controls and a datasource is made using the
DataBindings
property wich is present in most of the winforms visual controls.read these articles for more info about this topic.