-
Use a MVVM Pattern for your .NET MAUI App
When you first create a .NET MAUI project you have a single ContentPage for your project. That content page consists of a XAML file which defines the various Controls that the user will see when viewing the page. The ContentPage also consists of a code behind file that has the same name as the XAML…
-

Organizing a New .NET MAUI Project
When you first create a .NET MAUI project using Visual Studio the default layout puts your pages in the top level folder of the project. We are going to create a set of folders to store our files in a way that satisfies the separation of concerns software engineering principle. Add Folders for Separation of…