Ejemplo n.º 1
0
        private void OnPhotoCameraInitialized(object sender, CameraOperationCompletedEventArgs e)
        {
            var width  = Convert.ToInt32(_photoCamera.PreviewResolution.Width);
            var height = Convert.ToInt32(_photoCamera.PreviewResolution.Height);

            _luminance = new PhotoCameraLuminanceSource(width, height);

            _photoCamera.FlashMode = FlashMode.Off;

            _initialized = true;

            OnCameraInitialized(_initialized);
        }
		private void OnPhotoCameraInitialized(object sender, CameraOperationCompletedEventArgs e)
		{
			var width = Convert.ToInt32(_photoCamera.PreviewResolution.Width);
			var height = Convert.ToInt32(_photoCamera.PreviewResolution.Height);

			_luminance = new PhotoCameraLuminanceSource(width, height);

			_photoCamera.FlashMode = FlashMode.Off;

			_initialized = true;

			OnCameraInitialized(_initialized);
		}