public static void DeleteInstance()
 {
     if (instance != null)
     {
         instance = null;
     }
 }
        public static CustomCameraPage getInstance()
        {
            if (instance == null)
            {
                instance = new CustomCameraPage();
            }

            return(instance);
        }