UI data binding

Category:Articles needing additional references from February 2015Category:All articles needing additional references

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 efficiently, UI data binding has to address input validation and data type mapping.

A bound control is a widget whose value is tied or bound to a field in a recordset (e.g., a column in a row of a table). Changes made to data within the control are automatically saved to the database when the control's exit event triggers.

Example

<TextBlock Text="{Binding Username}" />
public class ExampleViewModel
{
    public string Username { get; set; }
}

Data binding frameworks and tools

Delphi

Java

.NET

JavaScript

See also

References

  1. "Using JavaFX Properties and Binding | JavaFX 2 Tutorials and Documentation".
  2. "Datum.js". Retrieved 7 November 2016.
  3. "Meteor Blaze". Meteor Blaze is a powerful library for creating live-updating user interfaces. Blaze fulfills the same purpose as Angular, Backbone, Ember, React, Polymer, or Knockout, but is much easier to use. We built it because we thought that other libraries made user interface programming unnecessarily difficult and confusing.
Category:Data management Category:Software design patterns


Category:All articles needing additional references Category:All articles with unsourced statements Category:All stub articles Category:Articles needing additional references from February 2015 Category:Articles with unsourced statements from December 2016 Category:Computer programming stubs Category:Data management Category:Database stubs Category:Software design patterns