WinRT MVVM Light Design Project

If anyone starts developing applications for Windows 8 using MVVM Light, please help me create a Windows 8 project template (WinRT). I'm getting bored using the Microsoft Layoutaware page (base class). I just need to structure the class using MVVM Light. If anyone has done this, please help me or provide some links to start developing the Windows 8 Metro application using MVVM Light.

The main areas where I ran into problems are:

  • Navigation (forward and backward)
  • State processing (basement in windows 8)
  • Post-app navigation launches form completion state, etc.
  • WebService processing [message using http client]
+8
windows-8 windows-runtime mvvm-light
source share
2 answers

There is an (older) example of using MVVM Light with windows 8 found here . There are also patterns and patterns as part of the MVVM Light source found here .

Edit: Here is an msdn example using MVVM Light.

+2
source share

How about this

But I have not tried. I am using a Portable class library (with Windows 8.1 and .NET x.xx objects), and this library is referencing a WinRT project. MvvmLight for PCL you can find on this link

The problem is that you cannot access local files and local settings, but at first you can add them from the Presentation project to the Portable Class library.

This solution has many advantages, and one of them is the simplest unit testing.

More on this stack overflow.

0
source share

All Articles