App.xaml.cs 299 B

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