protected void Dispose(bool disposing)
 {
     if (disposing && (this.dropDown != null))
     {
         this.Visible = false;
         this.dropDown.Dispose();
         this.dropDown = null;
     }
 }
Example #2
0
 protected void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (_dropDown != null)
         {
             Visible = false;
             _dropDown.Dispose();
             _dropDown = null;
         }
     }
 }
Example #3
0
 public FeedbackRectangle(Rectangle bounds)
 {
     _dropDown = new FeedbackDropDown(bounds);
 }
 protected void Dispose(bool disposing)
 {
     if (disposing && (this.dropDown != null))
     {
         this.Visible = false;
         this.dropDown.Dispose();
         this.dropDown = null;
     }
 }
 public FeedbackRectangle(Rectangle bounds)
 {
     this.dropDown = new FeedbackDropDown(bounds);
 }