123456789101112131415161718192021222324252627282930 |
- using MesAdaptor;
- using ST_CUBE_MES.Service;
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Data;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Windows;
- namespace ST_CUBE_MES
- {
- /// <summary>
- /// App.xaml 的互動邏輯
- /// </summary>
- public partial class App : Application
- {
- public App()
- {
- AppSettingService.Instance.Load();
- }
- protected override void OnExit(ExitEventArgs e)
- {
- var stopResult = SajetConnect.SajetTransClose();
- base.OnExit(e);
- }
- }
- }
|