Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF data binding - good FULL explanation of data binding

There are a lot of intros to DataBinding out there. But they leave out a lot of the databinding options.

Does anyone know a good reference / instructional document that goes through most/all of the wpf databinding options?

like image 240
Vaccano Avatar asked Dec 04 '09 17:12

Vaccano


People also ask

What is WPF data binding?

Data binding in Windows Presentation Foundation (WPF) provides a simple and consistent way for apps to present and interact with data. Elements can be bound to data from different kinds of data sources in the form of . NET objects and XML.

What are the different of data binding and simple data binding?

You also learned that there are two types of data binding as in the following: Simple Data binding: the process of binding a control such as a TextBox or a label. Complex data binding: the process of binding a control such as ComboBox, DataGridView, or ListBox.

Which class is used for data binding in WPF?

WPF data binding supports data in the form of CLR objects and XML. To provide some examples, your binding source may be a UIElement, any list object, a CLR object that is associated with ADO.NET data or Web Services, or an XmlNode that contains your XML data.


1 Answers

MSDN's Data Binding Overview page really covers just about every aspect of WPF's data binding. Granted, you'll have to follow links for more details, but every topic is at least mentioned (with links to more specifics) on that single page.

It includes specifics about the mechanics, basic concepts, conversions, validation, templating, and debugging.

like image 95
Reed Copsey Avatar answered Oct 17 '22 02:10

Reed Copsey