How to handle or debug controls to control the values on closing the window forms

  • Thread starter Thread starter SomaSundaram R
  • Start date Start date
S

SomaSundaram R

Guest
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
Here, When i step into the below line (basically F11)
components.Dispose();

I could see the value of "testComboBoxCtrl" got changed with immediate effect - which i want to debug and understand. Please recommend the ways if there are any.
Infragistics.Win.UltraWinEditors.UltraComboEditor testComboBoxCtrl;


SomaSundaram R

Continue reading...
 

Similar threads

Back
Top