DataBinding is the ability of the FrameWork to change a value of, lets say,
a textBox and with no code from you that value is stored in the property of
the object you want.
ex
TextBox tx1 = new TextBox();
SomeClass cls = new SomeClass();
tx1.Text = "";
cls.Name = "Hi";
tx1.DataBinding.Add("Text",cls,"Name");
now :
tx1.Text change From "" to "Hi".
if you write in the text box "Hi there!!!" and leave the control then the
cls.Name will be "Hi there!!!"
Hope that gives you a clue
> hello:
> what is databinding?
Mohan Nalinaranjan [MSFT] - 29 Jun 2005 20:25 GMT
for more information please read the contents of the link provided
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/databind/
data_binding.asp
--------------------
>From: "Nassos" <nasos@orama-tech.gr>
>References: <506C11316A530@DotNetMonster.com>
[quoted text clipped - 11 lines]
>Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP09.phx.gbl
>Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.windowsforms.databinding:2479
>X-Tomcat-NG: microsoft.public.dotnet.framework.windowsforms.databinding
>
[quoted text clipped - 14 lines]
>> hello:
>> what is databinding?
http://www.dotnetmonster.com/Uwe/Forums.aspx/winform-data-binding/200506/1