Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using BPA.Helper;
- using BPASmart.Model;
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Data;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Windows;
- using BPA.Communication;
- using System.IO;
- using System.Diagnostics;
-
- namespace BPASmart.ConfigurationSoftware
- {
- /// <summary>
- /// Interaction logic for App.xaml
- /// </summary>
- public partial class App : Application
- {
- protected override void OnStartup(StartupEventArgs e)
- {
- base.OnStartup(e);
- Json<LocalPar>.Read();
- if (e.Args != null && e.Args.Length == 1)
- {
- var res = e.Args[0];
- Json<ProjectModel>.Read(res);
- var pages = Json<ProjectModel>.Data.Pages.OrderBy(p => p.Key).ToDictionary(p => p.Key, s => s.Value);
- }
- MainWindow window = new MainWindow();
- window.Show();
- }
-
- protected override void OnExit(ExitEventArgs e)
- {
- base.OnExit(e);
- Json<LocalPar>.Save();
- }
- }
- }
|