Exemple #1
0
        private void GetCamera()
        {
            dbConn.Open();
            query = "SELECT * FROM `camera` WHERE 1";

            cmd        = new MySqlCommand(query, dbConn);
            dataReader = cmd.ExecuteReader();
            while (dataReader.Read())
            {
                var phonecamera = new PhoneCamera(dataReader.GetInt16("cameraID"), dataReader.GetString("optics"),
                                                  dataReader.GetInt16("mpx"), dataReader.GetInt16("recordQuality"));
                cameras.Add(phonecamera);
            }
            dbConn.Close();
        }
Exemple #2
0
 // Code to execute when the application is closing (eg, user hit Back)
 // This code will not execute when the application is deactivated
 private void Application_Closing(object sender, ClosingEventArgs e)
 {
     Camera.Dispose();
     Camera = null;
 }
Exemple #3
0
 // Code to execute when the application is deactivated (sent to background)
 // This code will not execute when the application is closing
 private void Application_Deactivated(object sender, DeactivatedEventArgs e)
 {
     Camera.Dispose();
     Camera = null;
 }
Exemple #4
0
 // Code to execute when the application is activated (brought to foreground)
 // This code will not execute when the application is first launched
 private void Application_Activated(object sender, ActivatedEventArgs e)
 {
     Camera = new PhoneCamera();
 }
Exemple #5
0
 // Code to execute when the application is launching (eg, from Start)
 // This code will not execute when the application is reactivated
 private void Application_Launching(object sender, LaunchingEventArgs e)
 {
     Camera = new PhoneCamera();
 }
Exemple #6
0
 public void pictureClick()
 {
     phoneCamera = new PhoneCamera(cameraViewManager.GetComponent <RawImage>());
     cameraViewManager.active();
 }