Restructuration

This commit is contained in:
2020-11-30 00:19:37 +01:00
parent 1bcaa3c841
commit c3b67ca667
28 changed files with 1082 additions and 452 deletions

21
PreferencesModal.xaml.cs Normal file
View File

@@ -0,0 +1,21 @@
using Hermes.Model;
using System.Windows;
namespace Hermes {
/// <summary>
/// Logique d'interaction pour PreferencesModal.xaml
/// </summary>
public partial class PreferencesModal : Window {
private ModelContext dbContext = null;
public PreferencesModal() {
dbContext = ModelContext.Getinstance();
InitializeComponent();
}
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) {
e.Cancel = true;
this.Hide();
}
}
}