data binding
- Bind Better with INotifyPropertyChanged
- Hosting Simple Data Binding
- Asynchronous data loading and data binding with Windows Forms
- Databinding - Bindinglist, BindingSource and BusinessObjects - Part 1
- Databinding - BindingList, BindingSource, and BusinessObjects: Part 2
- Data Binding Concepts in .NET Windows Forms
- Understanding Simple Data Binding
- Postulate.WinForms: A New Look at Data Binding
- Implementing complex data binding in custom controls
- Deep Binding
- Complex Data Binding a Collection Implementing IBindingList and ITypedList
- Best Practice for Binding WinForms ListControls
- A Simple Alternative to Windows Forms Data Binding
- A Simple Alternative to Windows Forms Data Binding
- Update Controls
- Update Controls .NET
- Data binding without INotifyPropertyChanged
- A Helper Class to Bind a DataTable to a Class
Must Read
Data bind using INotifyPropertyChanged
Shows how to participate in data binding both as a data source and as a binding host
This article introduces a reusable library that contains two utility components for data binding and asynchronous data loading.
Good Details
Databinding - Bindinglist, BindingSource and BusinessObjects
Databinding - Searching and sorting BindingList.
A detailed look at the concepts involved in data binding and controlling data binding
Tricks, pitfalls, and work arounds to .NET's data binding.
A new alternative to CRUD data binding in WinForms
An article on implementing complex data binding (DataSource and DataMember) on a custom control.
Binding Complex objects to Windows Forms controls
Complex Data Binding a collection implementing IBindingList and ITypedList
This article demonstrates the best technique for databinding the ListBox and ComboBox controls in .NET Windows Forms
Update control
An open source library of Windows Forms controls that update themselves automatically.
An open source library of Windows Forms controls that update themselves automatically.
I've felt for a long time that something was wrong with the way we do GUI development. For instance, suppose we have a form with a list of people and some information about them:
This set of articles walks you through the most common scenarios of using Update Controls in a XAML-based application. These basics are applicable to WPF, Silverlight, Windows Phone, and Win RT development.
Update Controls does not require that you implement INotifyPropertyChanged or declare a DependencyProperty. It connects controls directly to CLR properties. It discovers dependencies upon data through layers of intermediate code. This makes it perfect for the Model/View/ViewModel pattern; no extra code is needed in the ViewModel, which sits between the Model and the View.
Binding to the DataTable without the System.Windows.Forms namespace.
No comments:
Post a Comment