takePhoto() public method

public takePhoto ( ) : bool
return bool
Beispiel #1
0
 void cameraTimer_Tick(object sender, EventArgs e)
 {
     if (camera.isRunning)
     {
         camera.takePhoto(); statusCamera = "True"; OnPropertyChanged("statusCamera");
     }
     else
     {
         statusCamera = "False"; OnPropertyChanged("statusCamera");
     }
 }