void ReleaseDesignerOutlets ()
		{
			if (coloredSlider != null) {
				coloredSlider.Dispose ();
				coloredSlider = null;
			}
		}
 void ReleaseDesignerOutlets()
 {
     if (coloredSlider != null)
     {
         coloredSlider.Dispose();
         coloredSlider = null;
     }
 }
예제 #3
0
        void ReleaseDesignerOutlets()
        {
            if (currentLabel != null)
            {
                currentLabel.Dispose();
                currentLabel = null;
            }

            if (myValueSlider != null)
            {
                myValueSlider.Dispose();
                myValueSlider = null;
            }
        }