Binding to a simple property - Can it work?
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?

