Program.cs 756 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright (c) The Perspex Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System;
  4. using System.Diagnostics;
  5. using System.Windows.Threading;
  6. using Perspex;
  7. using Perspex.Collections;
  8. using Perspex.Controls;
  9. using Perspex.Controls.Templates;
  10. using ReactiveUI;
  11. using XamlTestApplication.Views;
  12. namespace XamlTestApplication
  13. {
  14. internal class Program
  15. {
  16. private static void Main()
  17. {
  18. var foo = Dispatcher.CurrentDispatcher;
  19. App application = new App
  20. {
  21. };
  22. var window = new MainWindow();
  23. window.Show();
  24. Application.Current.Run(window);
  25. }
  26. }
  27. }