/// <summary> On UWP platforms, this will let you set the white balance of the active camera. Units are in (K) Kelvin, try values 1000 -> 10,000 </summary>
 public void SetWhitebalance(int wb)
 {
                 #if WINDOWS_UWP
     CameraCaptureUWP cam = captureCamera as CameraCaptureUWP;
     if (cam != null)
     {
         cam.Whitebalance = wb;
     }
                 #endif
 }
 /// <summary> On UWP platforms, this will let you set the exposure of the active camera. Uncertain of the units, but try values in the range of -10 -> +10 </summary>
 public void SetExposure(int exp)
 {
                 #if WINDOWS_UWP
     CameraCaptureUWP cam = captureCamera as CameraCaptureUWP;
     if (cam != null)
     {
         cam.Exposure = exp;
     }
                 #endif
 }