HOME

TheInfoList



OR:

In computer programming, data binding is a general technique that binds data sources from the provider and consumer together and synchronizes them. This is usually done with two data/information sources with different languages, as in XML data binding and
UI data binding UI data binding is a software design pattern to simplify development of GUI applications. UI data binding binds UI elements to an application domain model. Most frameworks employ the Observer pattern as the underlying binding mechanism. To work ...
. In
UI data binding UI data binding is a software design pattern to simplify development of GUI applications. UI data binding binds UI elements to an application domain model. Most frameworks employ the Observer pattern as the underlying binding mechanism. To work ...
, data and information objects of the same language, but different logic function are bound together (e.g., Java UI elements to Java objects). In a data binding process, each data change is reflected automatically by the elements that are bound to the data. The term data binding is also used in cases where an outer representation of data in an element changes, and the underlying data is automatically updated to reflect this change. As an example, a change in a TextBox element could modify the underlying data value.


Data binding frameworks and tools

List of examples of data binding frameworks and tools for different programming languages:


C# .NET

* Windows Presentation Foundation (WPF) *
Blazor Blazor is a free and open-source web framework that enables developers to create web apps using C# and HTML. It is being developed by Microsoft. Overview Five different editions of Blazor apps have been announced. Blazor Server: These apps ar ...
* Windows Forms


Delphi

* DSharp third-party data binding tool * OpenWire Visual Live Binding—third-party visual data binding tool * LiveBindings


Java

*
Google Web Toolkit Google Web Toolkit (GWT ), or GWT Web Toolkit, is an open-source set of tools that allows web developers to create and maintain JavaScript front-end applications in Java. It is licensed under the Apache License 2.0. GWT emphasizes reusable ...
* JavaFX * Eclipse


JavaScript


Objective-C

* AKABeacon iOS Data Binding framework


Swift

* SwiftUI


Scala

* Binding.scala


See also

* XML data binding *
UI data binding UI data binding is a software design pattern to simplify development of GUI applications. UI data binding binds UI elements to an application domain model. Most frameworks employ the Observer pattern as the underlying binding mechanism. To work ...


References


Further reading

* Data management {{Comp-sci-stub