1234567891011121314151617181920212223 |
- using System.Windows;
- namespace Flyinsono.Client.Test
- {
- /// <summary>
- /// App.xaml 的交互逻辑
- /// </summary>
- public partial class App : Application
- {
- protected override void OnStartup(StartupEventArgs e)
- {
-
- MainDispatcher.Register(Current.Dispatcher);
-
-
- base.OnStartup(e);
- }
- }
- }
|