App.cs 451 B

1234567891011121314151617
  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 Perspex;
  5. using Perspex.Themes.Default;
  6. namespace XamlTestApplication
  7. {
  8. public class App : XamlTestApp
  9. {
  10. protected override void RegisterPlatform()
  11. {
  12. InitializeSubsystems((int)Environment.OSVersion.Platform);
  13. }
  14. }
  15. }