App.xaml.cs 458 B

1234567891011121314151617181920
  1. using PLCIOPointTool.Views;
  2. using System.Windows;
  3. namespace PLCIOPointTool
  4. {
  5. /// <summary>
  6. /// Interaction logic for App.xaml
  7. /// </summary>
  8. public partial class App : PrismApplication
  9. {
  10. protected override Window CreateShell() => Container.Resolve<MainWindow>();
  11. protected override void RegisterTypes(IContainerRegistry containerRegistry)
  12. {
  13. throw new NotImplementedException();
  14. }
  15. }
  16. }