App.xaml.cs 269 B

12345678910111213141516
  1. using System.Windows;
  2. using GalaSoft.MvvmLight.Threading;
  3. namespace Editor
  4. {
  5. /// <summary>
  6. /// Interaction logic for App.xaml
  7. /// </summary>
  8. public partial class App : Application
  9. {
  10. static App()
  11. {
  12. DispatcherHelper.Initialize();
  13. }
  14. }
  15. }