Hi,
I am using data binding in win forms. I have combo box and could of check boxes. I want to check the checkbox based on the selection in the combo box. I planning to write a method with parameters info object(contains properties selected value, checked check box value). I want to file this method when property is changed in Info object. Is there any way I can say call my method when DataSourceUpdateMode.OnPropertyChanged is changed?
this.cboProgramCertified.DataBindings.Add("SelectedValue", info, "InitialMedicaidProgramId", true, DataSourceUpdateMode.OnPropertyChanged);