Notify property change

  • Thread starter Thread starter Kulgan
  • Start date Start date
K

Kulgan

I want to bind a datagrid to MyItemCollection that consists of MyItem
objects. Problem is I'm not sure how to notify the datagrid of
property changes in a MyItem object. Anyone have any ideas?

Thanks
 
One of the easiest explanations I've seen...

All the controls on a form refresh when binding senses that a property one
of them is bound to has changed. It senses that via a PropertyChanged
event, where Property is the name of a property that is bound to by one of
the controls.
 
Back
Top