gallery manager WIP

This commit is contained in:
Alex Bezdieniezhnykh
2024-08-30 18:15:02 +03:00
parent 8d8a78c9f5
commit 9436e96d81
13 changed files with 402 additions and 157 deletions
+4 -1
View File
@@ -1,4 +1,5 @@
using System.Reflection;
using System.Data;
using System.Reflection;
using System.Windows;
using System.Windows.Input;
using System.Windows.Threading;
@@ -35,6 +36,8 @@ public partial class App : Application
{
services.AddSingleton<MainWindow>();
services.AddSingleton<HelpWindow>();
services.AddSingleton<DatasetExplorer>();
services.AddSingleton<IGalleryManager, GalleryManager>();
services.AddMediatR(c => c.RegisterServicesFromAssembly(Assembly.GetExecutingAssembly()));
services.AddSingleton<LibVLC>(_ => new LibVLC());
services.AddSingleton<FormState>();