App.xaml.cs 277 B

12345678910111213141516
  1. using Avalonia;
  2. namespace ControlCatalog
  3. {
  4. // Eventually we should move this into a PCL library so we can access
  5. // from mobile platforms
  6. //
  7. public class App : Application
  8. {
  9. public App()
  10. {
  11. RegisterServices();
  12. }
  13. }
  14. }