Is it possible to use object binding to bind a windows form control to an object so that whenever the object changes the form control reflects that change.
Here's what I've done so far:
Added a data grid to the form.
Added a binding reference to the class. This added the properties of the class as columns to the datagrid.
set the data grid's data source to the object.
The class is updated by an external event source. The update is working fine but nothing appears in the data grid.
I am wondering if I missing a step or what I'm trying to do is not possible automatically meaning I have to add some code to update the grid each time the object gets updated. If so, what's the point of binding in the first place.