How to start using MVVM in Metro applications?

I saw that there applications use this template. For example, Bewise.Cookbook implements MVVM from Galasoft.

I want to learn some labs in Windows 8, but I have doubts about using this template in Metro applications.

Does anyone know a good site where you learn to use Win8 with MVVM?

+6
source share
3 answers

MVVM is nothing special in Windows 8. If you don't find tutorials about using MVVM with Windows 8, try finding MVVM tutorials using Silverlight.

You can also check this:

+4
source

I recommend StyleMVVM . This is an MVVM framework designed from the ground up for the Metro platform. It includes its own IoC attribute, an implementation for ICommand and the attached team behaviors, as well as services for the Tiles, Badges, Toasts and Settings panels (charm pop-up window). It also supports all three languages ​​(C #, C ++ / CX and HTML / JS).

To make things easy to start, there are several C # and C ++ / CX templates, as well as a nice example application with shows.

+1
source

Take a look at the MVVM library for Windows 8 . It is very simple. You can add your NuGet package to your project. It also has an online project template for visual studio. So it is very easy to get started. And this is a library, but not a framework, so you can use only those functions that you like.

+1
source

Source: https://habr.com/ru/post/917700/


All Articles