You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
607 B

1 year ago
1 year ago
1 year ago
  1. using CDPShared;
  2. namespace CircleViewerMaui;
  3. public partial class App : Application
  4. {
  5. private static CDPWorker _cdp;
  6. public static CDPWorker CDP =>_cdp;
  7. private string syncFusionLicenseKey = "MTg3MzUyM0AzMjMxMmUzMTJlMzQzMVhOUDNaUUxSMUExWTB3a1EzK294VjhKcGh3eENlanRIdXR2aWVrSGZUVTg9";
  8. public App()
  9. {
  10. string[] args = Environment.GetCommandLineArgs();
  11. //Register SyncFusion license
  12. Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(syncFusionLicenseKey);
  13. _cdp = new CDPWorker();
  14. InitializeComponent();
  15. MainPage = new AppShell();
  16. }
  17. }