Welcome to MSDN Blogs Sign in | Join | Help

Alex Yakhnin's Blog

Development and architecture for Windows Mobile devices. And a few useful tips on the way...

News

Browse by Tags

All Tags » MVC   (RSS)
Update to MobileMVC with Container
I've recently made a substantial update to the MobileMVC framework . I've added the ability to utilize a (D)epenendcy (I)njection container by adding IControllerProvider interface into the framework which looks like this: public interface IControllerProvider Read More...
Mobile MVC on codeplex
I've published the Mobile MVC framework on CodePlex: http://www.codeplex.com/MobileMVC Feel free to post your comments, bugs, suggestions in the project's discussions. Read More...
Mobile MVC framework (part 4) - passing data between controllers
This is the part 4 of the series of the posts related to the Mobile MVC framework that I have described for you in my previous posts . I've updated the framework to handle the scenario of passing data between different controllers: the Controller class Read More...
Mobile MVC framework (part 3) - communicating with events
Just for people who are not comfortable with passing strings when notifiying the view or the controller, I've added the functionality to use events instead. You would not need to hook into the events explicitly because the controller will take care of Read More...
Mobile MVC framework (part 2)
Last time I showed you how to create a simple Login Form and pass the data between the View and Controller using ViewData dictionary. In this post I am going to show you how to pass a strongly typed data. We will continue working with code sample we created Read More...
Mobile MVC framework (part 1)
In order to show you the Mobile MVC framework I came up with, let me walk you through the same excersise we did when I showed you the MVC pattern . Let's create a simple application with the same login form. Let's create a Smart Devices project and rename Read More...
Implementing MVC pattern in .NET CF applications (Part 2).
Let's continue on the way how-to implement the model-viewer-controller pattern in .NET Compact Framework applications that I started in my previous post . We stopped at the point where we needed to figure out on how to connect the LoginController with Read More...
Implementing MVC pattern in .NET CF applications (Part 1).
I would like to start a series of posts devoted to best practices when designing mobile applications. So in this first post I will describe the MVC pattern that I have been using when creating CF applications for the customers. I realize that a lot has Read More...
Page view tracker