I have just discovered this tutorial and it is proving to be invaluable. Thank you so much for doing this. While following these steps, I have noticed some minor issues which I will report in case anyone else hits the same problems.
In Part1: Create Solution, the CreateShell() method appears to be incorrect.
It currently resolves Window ...
protected override DependencyObject CreateShell()
{
return Container.Resolve<Window>();
}
whereas I think it ought to resolve MainWindow :
protected override DependencyObject CreateShell()
{
return Container.Resolve<MainWindow>();
}
I have just discovered this tutorial and it is proving to be invaluable. Thank you so much for doing this. While following these steps, I have noticed some minor issues which I will report in case anyone else hits the same problems.
In Part1: Create Solution, the CreateShell() method appears to be incorrect.
It currently resolves Window ...
whereas I think it ought to resolve MainWindow :