Simple programs using WPF, Prism

I uploaded simple programs using Prism Library for WPF (Windows Presentation Foundation) on the following GitHub repository.

https://github.com/fukagai-takuya/prism-practice

Prism Library is a framework to support software development with WPF using the MVVM pattern. I’m going to add and update the contents little by little.

The source code can be downloaded with the following command.

git clone https://github.com/fukagai-takuya/prism-practice

This web page explains the source codes on the above GitHub repository.

1. Install Prism Template Pack to Visual Studio 2022 and create a Prism WPF project
The source code is the BlankApp project in the prism-practice solution.

2. Apply Material Design In XAML Toolkit and MahApps.Metro to a Prism WPF application
The source code is the MaterialDesignWithMetro project in the prism-practice solution.

3. Prism WPF Data Binding
The source code is the DataBinding project in the prism-practice solution.

4. Displaying other views in MainWindow using RegionManager
The source code is the UserControlView project in the prism-practice solution.

5. Displaying other views (with parameters) in MainWindow using RegionManager
The source code is the NavigateToViewWithParameters project in the prism-practice solution.