Binding to a simple property - Can it work?

Basically say I have a textEdit and a string myObject.MyProperty. If I do something like

textEdit.DataBindings.Add( new Binding("Text",myObject,"MyProperty") );

It seems to work only half way - if I modify textEdit then MyProperty gets modified too. BUT if I modify MyProperty, textEdit doesn't get modified.

The reason I'm making this is because I want to have an easy-to-use properties storage for my application that's easy to databind to and work with. Any suggestions?

[502 byte] By [ivj] at [2007-12-23]