Click here to Skip to main content
15,868,141 members
Articles / Programming Languages / Visual Basic

Data Binding Concepts in .NET Windows Forms

Rate me:
Please Sign up or sign in to vote.
4.65/5 (121 votes)
15 Feb 20038 min read 897.6K   8.8K   216   69
A detailed look at the concepts involved in data binding and controlling data binding
This article gives an overview of data binding in the .NET Framework. Microsoft has beefed up the data binding features considerably in .NET which has made data binding a compelling option to tie your front-end to data sources. I have concentrated on .NET Windows Forms data binding.

What is DataBinding?

DataBinding is a powerful feature provided by the .NET Framework that enables visual elements in a client to connect to a datasource such as DataSets, DataViews, Arrays, etc. Some of the visual elements in the client can be TextBox, Datagrid, etc. A two-way connection is established such that any changes made to the datasource are reflected immediately in the visual element and vice versa.

Below is a graphical description of the concept of databinding:

Image 1

DataBinding before .NET

In the earlier databinding models, the datasource that could be used was usually limited to a database. All DBMS systems provided their own APIs to help in building GUI applications and quickly bind them to the data. Programmer did not have the flexibility to control the databinding process with the result that most developers avoided the use of databinding.

DataBinding with .NET

The .NET Framework provides a very flexible and powerful approach to databinding and allows the programmer to have a fine control over the steps involved in the whole process. One of the biggest improvements with .NET has been the introduction of databinding to web pages through the use of .NET server-side web controls. Hence, building data driven web applications has been greatly simplified. Please note that this article only deals with data binding in .NET Windows Forms.

Advantages of DataBinding

  1. Databinding in .NET can be used to write data driven applications quickly. .NET data binding allows you to write less code with fast execution but still get the work done in the best way.
  2. .NET automatically writes a lot of databinding code for you in the background (you can see it in "Windows Generated Code" section), so the developer does not have to spend time writing code for basic databinding, but still has the flexibility of modifying any code that he would like to. We get the benefits of bound as well as unbound approach.
  3. Control over the Databinding process by using events. This is discussed in more detail later in the article.

Disadvantages of DataBinding

  1. More optimized code can be written by using the unbound or traditional methods.
  2. Complete flexibility can only be achieved by using the unbound approach.

Databinding Concepts

For databinding to take place, data provider and a data consumer should exist so that a synchronized link is established between the two. Data providers contain the data and the data consumers use the data exposed by the data providers and display them.

.NET has expanded the scope of possible data providers. In .NET, any class or component that implements the IList interface is a valid DataSource. If a component implements the IList interface, then it is transformed into an index based collection.

Some of the classes that support the IList interface in the NET Framework are given below. Please note that any class that implements the IList interface is a valid data provider.

  1. Arrays
  2. DataColumn
  3. DataTable
  4. DataView
  5. DataSet

Please note that IList interface only allows you to bind at run time. If you want to support DataBinding at design time, you will have to implement the IComponent interface as well. Also note that you cannot bind to DataReaders in Windows Forms (you can in web forms).

The .NET Framework supports simple and complex DataBinding. Simple databinding is supported by controls like TextBoxes. In simple databinding, only one data value can be displayed by the control at a time. In complex databinding, which is supported by controls like the DataGrid, more than one data value from the DataSource can be displayed.

Dataflow during DataBinding

A good understanding of the dataflow from the control to the datasource is very important. The diagram below gives an overview of the dataflow and the objects involved.

Image 2

In .NET, controls can have many properties that can be bound to a DataSource. Each databound property has an associated Binding object. Since a control can have many Binding objects, the control has a collection (instance of ControlBindingsCollection class) of all the Binding objects. Also remember that different properties of the same control can be bound to different datasources.

Each Binding object talks to a CurrencyManager or a PropertyManager. CurrencyManager and PropertyManager classes merit a little explanation, as they are important. CurrencyManager and PropertyManager are derived from the base class BindingManagerBase. The purpose of BindingManagerBase class is to maintain the concurrency between the datasource and the control. Of the two classes, the CurrencyManager is used when the datasource implements the IList Interface. Examples of such datasources are DataView, DataSet, ArrayList, etc. The CurrencyManager can be used for simple as well as complex databinding. However, the PropertyManager is used when the datasource is an instance of a user-defined class. The Control's property is bound to the property exposed by this object. PropertyManager can only be used for simple databinding.

As a rule of thumb, if you want your class to be a datasource, you should use CurrencyManager when your class is a data container. However, if you are interested in binding a control to properties exposed by your own class, then using a PropertyManager is easier, since you do not have to implement the IList Interface.

Since a form can contain many controls each binding to a different datasource, a class is needed to manage the CurrencyManager and PropertyManager objects. Therefore, each Windows Form in .NET has a default BindingContext object associated with it. But, you can always create more BindingContext objects on the form. The BindingContext object is a collection of CurrencyManager and PropertyManager objects.

To summarize:

  • A control can have many properties that can be bound.
  • Each databound property of the control has an associated Binding object.
  • All Binding objects for a control are contained by the control's DataBindings property, which is an instance of ControlBindingsCollection class.
  • Each databinding object talks to a CurrencyManager or PropertyManager object.
  • CurrencyManager and PropertyManager are derived from the BindingManagerBase class.
  • The BindingContext object is a collection of CurrencyManager and PropertyManager objects.
  • By default, a form contains one BindingContext object. More BindingManagerBase objects can be created and added to the BindingContext collection.
  • Each CurrencyManager or PropertyManager encapsulates the data access to one datasource per BindingContext object.

Controlling DataBinding

The real flexibility and power of databinding in .NET is realized because the Binding and BindingManagerBase classes supports events. This enables us to change the data passed between the Control and the datasource.

A quick look at the figure below can help you understand this behaviour.

Image 3

The diagram above depicts how .NET Windows Forms databinding has been made flexible by making use of the events generated by Binding and BindingManagerBase classes.

The Binding object exposes two events: Format and Parse. The Format event is triggered twice. First, when the data is pushed from the datasource to the control and the second time when the datasource is changed and data is updated to the control. The parse event is triggered once when the data is pulled from the control to the datasource.

The Currency Manager (derived from the BindingManagerBase class) exposes three events: CurrentChanged, PositionChanged and ItemChanged. CurrentChanged is triggered when the bound value changes; PositionChanged is triggered when the position property has changed and ItemChanged is triggered when the current item has changed. Please note that the PropertyManager class supports only 2 events: CurrentChanged, PositionChanged.

These events enable a user to have fine control over the dataflow from the control to the datasource and vice versa.

I would like to give an example that will help you in understanding the events of the Binding class. This problem was actually the reason why I got interested in learning about the intricacies of databinding and hence the motivation for this article. The problem came when I was trying to bind a datetime field from SqlServer with a text property of the textbox control. Since, SqlServer stores stores the date in "MM/dd/yyyy hh:mm:ss" format, so the textbox would display the time along with the date. No matter how much I tried to remove the time portion in the display, I could not. Then, I came across the events of the Binding class and the solution using events was very easy and elegant.

VB.NET
'The binding object must be declared with the keyword "WithEvents" in order 
'for us to be able to use the format and parse events.
Dim WithEvents oBinding As Binding

Private Sub Form2_Load(ByVal sender As Object, ByVal e As System.EventArgs) _
            Handles MyBase.Load 
    'A new binding object declared above using "WithEvents" is explicitly 
    'created that binds the text field to the "GetDateTime" property of the 
    'MyDateTime class. The binding object is then added to the textbox's 
    'databindings collection.
     oBinding = New Binding("Text", oDt, "GetDateTime")
     txt1.DataBindings.Add(oBinding)

     'Here, the binding object is not explicitly created and hence
     'no events will triggered and the datetime is displayed in 
     ' "MM/dd/yyyy hh:mm:ss"
     'format only.
        txt2.DataBindings.Add("Text", oDt, "GetDateTime")
    End Sub

    'This event is triggered right before the txt1's text field displays the 
    'datetime value that itobtains from oDt object (the datasource). Here, we
    'have changed the format of display to "MM/dd/yy" although the actual 
    'data pulled from oDt is in "MM/dd/yyyy hh:mm:ss" format.
    Private Sub oBinding_Format(ByVal sender As Object, ByVal e 
            As System.Windows.Forms.ConvertEventArgs) Handles oBinding.Format
        e.Value = Format(e.Value, "MM/dd/yy")
    End Sub

In the example, there are two textboxes. One is implicitly bound to the datetime property of an object of my custom class and the other is explicitly bound using a binding object which is declared with "WithEvents" keyword so that we can handle the events generated during binding and hence control the display of the data. Also, the sample code provides a good example of how to bind your own classes to controls.

  • The reason I used my own class as a datasource is to avoid the dependency on a SQL Server Database datetime column and therefore make the example self contained. However, the same code can be applied to format the data when the datasource is populated from SQL Server database. Please refer to the sample code for better understanding of how to use events.

Change Log

  1. Added a new C# sample which does the same thing as the VB.NET example

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below. A list of licenses authors might use can be found here.


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralUsing databindings with negated boolean Pin
Mark Kettlewell10-Nov-03 6:13
Mark Kettlewell10-Nov-03 6:13 
GeneralThanks for the time Pin
TLWallace26-Sep-03 14:50
TLWallace26-Sep-03 14:50 
GeneralUpdate datagrid Pin
Moishe16-Jun-03 18:03
Moishe16-Jun-03 18:03 
GeneralRe: Update datagrid Pin
Anonymous18-Aug-03 16:43
Anonymous18-Aug-03 16:43 
GeneralDisadvantages of DataBinding Pin
lars zilch24-Feb-03 20:52
lars zilch24-Feb-03 20:52 
GeneralBinding to a typed datarow Pin
Gerard Pang19-Feb-03 12:22
Gerard Pang19-Feb-03 12:22 
GeneralRe: Binding to a typed datarow Pin
biztalker6-Mar-03 17:19
biztalker6-Mar-03 17:19 
GeneralA question about reset value. Pin
beavis18-Feb-03 19:08
beavis18-Feb-03 19:08 
GeneralNice one Pin
mstephens18-Feb-03 1:23
mstephens18-Feb-03 1:23 
Questionc# source code? Pin
beavis17-Feb-03 15:57
beavis17-Feb-03 15:57 
AnswerRe: c# source code? Pin
Tarun Jain17-Feb-03 18:08
Tarun Jain17-Feb-03 18:08 
GeneralNice article, but... Pin
Jan Tielens16-Feb-03 19:56
Jan Tielens16-Feb-03 19:56 
GeneralRe: Nice article, but... Pin
Tarun Jain17-Feb-03 18:10
Tarun Jain17-Feb-03 18:10 
GeneralRe: Nice article, but... Pin
Roger Rong18-Feb-03 9:11
Roger Rong18-Feb-03 9:11 
GeneralRe: Nice article, but... Pin
Roger Rong18-Feb-03 10:12
Roger Rong18-Feb-03 10:12 
GeneralRe: Nice article, but... Pin
iamsomeonewhoneedsaname12345678919-Feb-03 6:56
iamsomeonewhoneedsaname12345678919-Feb-03 6:56 
GeneralRe: Nice article, but... Pin
Phil@ictp.com19-Feb-03 6:59
sussPhil@ictp.com19-Feb-03 6:59 
GeneralRe: Nice article, but... Pin
Roger Rong19-Feb-03 8:51
Roger Rong19-Feb-03 8:51 
GeneralRe: Nice article, but... Pin
Anonymous25-Jul-03 11:31
Anonymous25-Jul-03 11:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.