void ReleaseDesignerOutlets ()
		{
			if (bottomRightButton != null) {
				bottomRightButton.Dispose ();
				bottomRightButton = null;
			}
			if (topLeftButton != null) {
				topLeftButton.Dispose ();
				topLeftButton = null;
			}
		}
 void ReleaseDesignerOutlets()
 {
     if (bottomRightButton != null)
     {
         bottomRightButton.Dispose();
         bottomRightButton = null;
     }
     if (topLeftButton != null)
     {
         topLeftButton.Dispose();
         topLeftButton = null;
     }
 }