-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathApp.xaml.cs
31 lines (27 loc) · 835 Bytes
/
App.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
namespace Demo
{
using System;
using System.Windows;
using Demo.Model;
using Demo.ViewModel;
using MainWindow = Demo.View.MainWindow;
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
try
{
var fileSystem = new FileSystem();
var imageHashFacade = new ImageHashFacade(fileSystem);
var imageHashSimilarityCalculator = new ImageHashSimilarityCalculator();
var vm = new DemoViewModel(fileSystem, imageHashFacade, imageHashSimilarityCalculator);
var view = new MainWindow(vm);
view.Show();
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
}
}