终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
663 B

  1. using BPASmartClient.ScreenLib;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Configuration;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. namespace BPASmartClient.ScreenMaxWok
  10. {
  11. /// <summary>
  12. /// Interaction logic for App.xaml
  13. /// </summary>
  14. public partial class App : Application
  15. {
  16. protected override void OnStartup(StartupEventArgs e)
  17. {
  18. base.OnStartup(e);
  19. AppMain appMain = new AppMain(MainWindow, this.GetType());
  20. }
  21. protected override void OnExit(ExitEventArgs e)
  22. {
  23. base.OnExit(e);
  24. }
  25. }
  26. }