예제 #1
0
 private void OnEventTempTint()
 {
     if (toupcam_ != null)
     {
         int nTemp = 0, nTint = 0;
         if (toupcam_.get_TempTint(out nTemp, out nTint))
         {
             label2.Text     = nTemp.ToString();
             label3.Text     = nTint.ToString();
             trackBar2.Value = nTemp;
             trackBar3.Value = nTint;
         }
     }
 }