void ReleaseDesignerOutlets ()
		{
			if (effectLabel != null) {
				effectLabel.Dispose ();
				effectLabel = null;
			}
			if (imageView != null) {
				imageView.Dispose ();
				imageView = null;
			}
		}
 void ReleaseDesignerOutlets()
 {
     if (effectLabel != null)
     {
         effectLabel.Dispose();
         effectLabel = null;
     }
     if (imageView != null)
     {
         imageView.Dispose();
         imageView = null;
     }
 }