How can I get MVVM Light to work with the Grouped Items group in Metro?

I am trying to implement a Metro-style grouped position page using the MVVM Light structure, following the pattern in this blog post, but using ViewModelLocator to ensure compatibility:

http://mikaelkoskinen.net/post/winrt-tutorial-mvvm-gridview-semanticzoom.aspx

I have this job, unfortunately, the grid itself does not appear in the designer (which is what I use MVVM Light). I linked the name without any problems, so I know that the viewmodel is properly anchored.

Any ideas please?

+5
source share
1 answer

I had the same problem. The problem is that if you are using CollectionViewSource, it must be explicitly specified as follows:

MVVM Light , , . .

:

CollectionViewSource , .

+5

All Articles