Rood
Rood

Reputation: 41

Delphi Prism - DataModule - Data binding

What is the equivalent for Datamodule in Delphi Prism XE? How data binding is supported in Winform applications using Delphi Prism XE?

Upvotes: 2

Views: 372

Answers (1)

RRUZ
RRUZ

Reputation: 136391

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.

Upvotes: 1

Related Questions