App.xaml.cs 432 B

1234567891011121314151617181920212223
  1. using System.Windows;
  2. namespace Flyinsono.Client.Test
  3. {
  4. /// <summary>
  5. /// App.xaml 的交互逻辑
  6. /// </summary>
  7. public partial class App : Application
  8. {
  9. protected override void OnStartup(StartupEventArgs e)
  10. {
  11. MainDispatcher.Register(Current.Dispatcher);
  12. base.OnStartup(e);
  13. }
  14. }
  15. }