79799432

Date: 2025-10-25 10:17:27
Score: 0.5
Natty:
Report link

For me just unbind, do something, bind back:

// unbind 
comboBox0.SelectedIndexChanged -= new System.EventHandler(this.comboBox0_SelectedIndexChanged);
// do your staff
//  .....
// bind back
comboBox0.SelectedIndexChanged += new System.EventHandler(this.comboBox0_SelectedIndexChanged);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mike