Being new to both WPF and MVVM, I am exploring an article by Josh Smith on the MVVM pattern and accompanying sample code.
I see that the application starts in app.xaml.cs , creating the MainWindow object, app.xaml.cs it into the MainWindowViewModel object and then displaying the main window. So far so good.
However, I cannot find the code that instantiates the classes AllCustomersView or CustomerView . Using "find all links" on the constructors of these views does not lead to anything. What am I missing here?
source share