add left menu with icons

This commit is contained in:
Alex Bezdieniezhnykh
2024-11-24 02:09:04 +02:00
parent c1b74cdc00
commit b61bed3b51
9 changed files with 177 additions and 16 deletions
+4 -1
View File
@@ -142,6 +142,9 @@ public partial class App
services.AddSingleton<DatasetExplorer>();
services.AddSingleton<IGalleryManager, GalleryManager>();
services.AddSingleton<IAzaionModule, AnnotatorModule>();
services.AddSingleton<IAzaionModule, DatasetExplorerModule>();
})
.Build();
_mediator = _host.Services.GetRequiredService<IMediator>();
@@ -176,6 +179,6 @@ public partial class App
base.OnExit(e);
await _host.StopAsync();
_host.Dispose();
//_host.Dispose();
}
}