Please advise me. Winforms app, C#. I have a user control (UC) that contains a DataGridView.
Firstly, I have a boolean public property in the UC called "IsComplete". in the RowEnter event of my DGV, Im able to set the property accordingly.
Secondly, I successfully instantiate and load this UC into its designated area in my Main form.
PROBLEM: I would like the Enabled property of a control in my Main form to respond to the IsComplete property in my UC automatically when it changes.
Is this possible? All my searches on Google refer to examples using INotifyPropertyChanged, but only on the same class.
I would certainly appreciate any help on this. TIA!
-cheers!