Interaction logic for MainWindow.xaml... When logic gets complicated, move it to presenter class
Inheritance: IShell
Beispiel #1
0
 public Bootstrapper()
 {
     var shell = new MainWindow();
     new ProgrammerPresenter(new ProgrammerScreen(), new IcspService(), shell);
     shell.Show();
 }