新生命码神工具,代码生成、网络工具、API工具、串口工具、正则工具、图标工具、加解密工具、地图接口。
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.

30 lines
581 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Configuration;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using NewLife.Log;
  9. namespace X5Coder
  10. {
  11. /// <summary>
  12. /// App.xaml 的交互逻辑
  13. /// </summary>
  14. public partial class App : Application
  15. {
  16. public App()
  17. {
  18. this.InitializeComponent();
  19. }
  20. protected override void OnStartup(StartupEventArgs e)
  21. {
  22. #if NET45
  23. XTrace.UseWinForm();
  24. #endif
  25. base.OnStartup(e);
  26. }
  27. }
  28. }