Added main structure

This commit is contained in:
Laurent
2026-02-16 22:44:44 +01:00
parent 663302c5b1
commit be6de65f85
10 changed files with 176 additions and 37 deletions

View File

@@ -1,6 +1,8 @@
using System.Configuration;
using System.Data;
using System.Windows;
using GifResizer.ViewModels;
using GifResizer.Views;
namespace GifResizer;
@@ -9,4 +11,13 @@ namespace GifResizer;
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
var viewModel = new MainViewModel();
var mainWindow = new MainWindow(viewModel);
mainWindow.Show();
}
}