How can I build the architecture of the tag game using the MVVM pattern?

    1 answer 1

    Apparently it is worth developing CustomControl, which will display the field of the game, and will form the appropriate Commands in response to user actions.

    • Is it possible in more detail. What classes need to write in the "Model", "ViewModel" (especially not clear about this section). Really need to figure it out ... - MaxMax
    • 2
      Here is a good article: megadarja.blogspot.com/2010/04/mvvm-wpf.html But, as a View, you will need to create a special custom control. Standard controls do not support the functions you need. You can also see the documentation for the Prism library from Microsoft. Or other libraries that implement the MVVM pattern. - mnavern