This commit is contained in:
Tobias Wohlleben 2025-01-21 14:28:35 +01:00
parent 50d6e06079
commit 11651e5c30
4 changed files with 6 additions and 17 deletions

View File

@ -1,13 +1,8 @@
using System.ComponentModel;
using System.Configuration;
using System.Data;
using System.Windows;
using System.Windows;
using CamBooth.App.Core.AppSettings;
using CamBooth.App.Core.Camera;
using CamBooth.App.Camera;
using CamBooth.App.Core.Logging;
using CamBooth.App.DebugConsole;
using CamBooth.App.LiveView;
using CamBooth.App.PictureGallery;
using Microsoft.Extensions.DependencyInjection;

View File

@ -12,7 +12,7 @@ using CamBooth.App.PictureGallery;
using EOSDigital.API;
using EOSDigital.SDK;
namespace CamBooth.App.Core.Camera;
namespace CamBooth.App.Camera;
public class CameraService : IDisposable
{

View File

@ -7,7 +7,7 @@ using System.Windows.Media;
using System.Windows.Media.Imaging;
using CamBooth.App.Core.AppSettings;
using CamBooth.App.Core.Camera;
using CamBooth.App.Camera;
using CamBooth.App.Core.Logging;
using EOSDigital.API;
@ -41,7 +41,7 @@ public partial class LiveViewPage : Page
}
private void MainCamera_OnLiveViewUpdated(Camera sender, Stream img)
private void MainCamera_OnLiveViewUpdated(EOSDigital.API.Camera sender, Stream img)
{
try
{

View File

@ -1,19 +1,13 @@
using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using CamBooth.App.Core;
using CamBooth.App.Camera;
using CamBooth.App.Core.AppSettings;
using CamBooth.App.Core.Camera;
using CamBooth.App.Core.Logging;
using CamBooth.App.DebugConsole;
using CamBooth.App.LiveView;
using CamBooth.App.PictureGallery;
using Wpf.Ui.Controls;
using MessageBox = Wpf.Ui.Controls.MessageBox;
namespace CamBooth.App;
/// <summary>