App.cs 548 B

1234567891011121314151617181920
  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 TestApplication
  7. {
  8. public class App : Application
  9. {
  10. public App()
  11. {
  12. RegisterServices();
  13. InitializeSubsystems((int)Environment.OSVersion.Platform);
  14. Styles = new DefaultTheme();
  15. Styles.Add(new SampleTabStyle());
  16. }
  17. }
  18. }