private void Window_Closing(object sender, CancelEventArgs e) { // Shutdown Tracker if (tracker != null) { tracker.Shutdown(); tracker.Dispose(); tracker = null; } // Destroy Transformation if (transformation != null) { transformation.Dispose(); transformation = null; } // Stop and Close Camera if (device != null) { device.StopCameras(); device.Dispose(); device = null; } }
private void Window_Unloaded(object sender, RoutedEventArgs e) { // Stop and Close Camera if (device != null) { device.StopCameras(); device.Dispose(); device = null; } }
private void Window_Closing(object sender, CancelEventArgs e) { // Stop and Close Camera if (device != null) { device.StopCameras(); device.Dispose(); device = null; } }
private void Window_Unloaded(object sender, RoutedEventArgs e) { // Destroy Transformation if (transformation != null) { transformation.Dispose(); transformation = null; } // Stop and Close Camera if (device != null) { device.StopCameras(); device.Dispose(); device = null; } }
private void Window_Unloaded(object sender, RoutedEventArgs e) { // Shutdown Tracker if (tracker != null) { tracker.Shutdown(); tracker.Dispose(); tracker = null; } // Stop and Close Camera if (device != null) { device.StopCameras(); device.Dispose(); device = null; } }