<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>windowsphonemvc Wiki Rss Feed</title><link>http://windowsphonemvc.codeplex.com/</link><description>windowsphonemvc Wiki Rss Description</description><item><title>Updated Wiki: Home</title><link>http://windowsphonemvc.codeplex.com/wikipage?version=11</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Windows Phone MVC is a MVC implementation for WP7. It supports strongly typed navigation with history, easier handling of windows phones lifecycle, multiple navigation frames and enables you to build testable, and maintainable applications for WP7.&lt;br /&gt;
&lt;h1&gt;Windows Phone MVC has been replaced by &lt;a href="http://phoenixframework.codeplex.com/"&gt;http://phoenixframework.codeplex.com/&lt;/a&gt; &lt;/h1&gt;
There is quite a high compatibility and many concepts are transferrable. The main difference is Phoenix has WPF and WP7 support, and is far more mature.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This project was spawned from Columbus, another WP7 framework, which was inspired from Magellan (a WPF MVC framework). I learnt a lot from those projects, and I wanted to change some core behavior of Columbus, and so WP7 MVC was born.&lt;br /&gt;&lt;br /&gt;MVVM can only get you so far, MVC is an awesome way to deal with navigation BETWEEN views, then MVVM can take over and provide the interaction on that view. A large effort has been made to maintain full compatibility with the out of the box feature sets.&lt;br /&gt;
&lt;h2&gt;Documentation/More information at &lt;a href="http://windowsphonefoundations.net/"&gt;http://windowsphonefoundations.net/&lt;/a&gt;&lt;/h2&gt;&lt;h2&gt;See an example of many of the features at &lt;a href="http://jake.ginnivan.net/windows-phone-mvc-update"&gt;http://jake.ginnivan.net/windows-phone-mvc-update&lt;/a&gt;&lt;/h2&gt;&lt;h2&gt;Google Group for discussion/asking questions at &lt;a href="https://groups.google.com/group/windowsphonemvc"&gt;https://groups.google.com/group/windowsphonemvc&lt;/a&gt;&lt;/h2&gt;
&lt;h1&gt;Framework Features&lt;/h1&gt;
 - Strongly Typed Navigation, with objects as parameters support (Controller&amp;lt;HomeController&amp;gt;().NavigateTo(c=&amp;gt;c.SomeAction(StateArgument)))&lt;br /&gt; - Custom Shell, Navigator and Journal to give better control over navigation of WP7 (like back stack manipulation, in NoDo! And stuff like BackTo&amp;lt;HomeController&amp;gt;(c=&amp;gt;c.Main());)&lt;br /&gt; - TransitionFrame comes out of the box, for nice navigation animations using the Silverlight Toolkits Transitions&lt;br /&gt; - FAST! I am constantly tweaking the internals to make sure all the awesomeness does not have a massive performance hit&lt;br /&gt; - Ability to pass arguments in navigation, rather than uri query strings (had to mention this twice because it is so handy)&lt;br /&gt; - Easy access to Obscured and Activated events on your view model&lt;br /&gt; - Full Testable! All major WP7 classes (WindowsPhoneFrame, WindowsPhoneApplication etc) all have Interfaces and are wrapped to allow you to test&lt;br /&gt; - Some helpers around Async. Execute.AsyncPattern or Execute.AsyncPatternWithResult synchronise async calls&lt;br /&gt; - Task/Chooser support, in a testable way&lt;br /&gt; - Convention based Controller and View discovery&lt;br /&gt; - Autofac Support Via an Extension&lt;br /&gt; - Easy access to page or application transient storage&lt;br /&gt; - Simple tombstoning support&lt;br /&gt; - Awesome tracing/debugging output so you know what is happening, and see any performance bottlenecks, see &lt;a href="http://jake.ginnivan.net/wp7-mvc-trace-logging-and-debugging"&gt;http://jake.ginnivan.net/wp7-mvc-trace-logging-and-debugging&lt;/a&gt; for a look&lt;br /&gt;
&lt;h2&gt;Mango Features&lt;/h2&gt; - Search Extra&amp;#39;s support&lt;br /&gt; - Super Easy Deep Linking (easier than the default apis :P)&lt;br /&gt; - More coming soon!&lt;br /&gt;
&lt;h2&gt;Apps Using it&lt;/h2&gt;Windows Phone MVC is in production now and is being used by &lt;a href="http://transhub.wordpress.com/"&gt;http://transhub.wordpress.com/&lt;/a&gt; which is a really cool app and winner of Spotlight 2011&lt;br /&gt;&lt;br /&gt;And we are in the process of rebuilding Mahtweets for WP7 (&lt;a href="http://mahtweetswp7.codeplex.com/"&gt;http://mahtweetswp7.codeplex.com/&lt;/a&gt;) just for Mango using the framework. So head over there for a currently evolving app and see how Windows Phone MVC can help you write awesome performant WP7 apps with ease and without the frustration of the restrictiveness of the OOTB APIs.&lt;br /&gt;&lt;br /&gt;At this point I am really open to suggestions in ways to improve this framework. &lt;br /&gt;
&lt;h2&gt;Notes&lt;/h2&gt;Controller actions are executed asynchronously, this means if you are fetching data from web services, it should be done in a synchronous way, currently the best way to do this is:&lt;br /&gt;&lt;span class="codeInline"&gt; var stuff = Execute.AsyncPatternWithResults(myService.BeginGetStuff, &amp;quot;Arg1&amp;quot;, &amp;quot;Arg2&amp;quot;, myService.EndGetStuff); &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>JakeGinnivan</author><pubDate>Tue, 17 Apr 2012 01:49:41 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120417014941A</guid></item><item><title>Updated Wiki: Home</title><link>http://windowsphonemvc.codeplex.com/wikipage?version=10</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Windows Phone MVC is a MVC implementation for WP7. It supports strongly typed navigation with history, easier handling of windows phones lifecycle, multiple navigation frames and enables you to build testable, and maintainable applications for WP7.&lt;br /&gt;
&lt;h1&gt;Windows Phone MVC has been replaced by &lt;a href="http://phoenixframework.codeplex.com/"&gt;http://phoenixframework.codeplex.com/&lt;/a&gt; &lt;/h1&gt;
There is quite a high compatibility and many concepts are transferrable. The main difference is Phoenix has WPF and WP7 support, and is far more mature.&lt;br /&gt;&lt;br /&gt;This project was spawned from Columbus, another WP7 framework, which was inspired from Magellan (a WPF MVC framework). I learnt a lot from those projects, and I wanted to change some core behavior of Columbus, and so WP7 MVC was born.&lt;br /&gt;&lt;br /&gt;MVVM can only get you so far, MVC is an awesome way to deal with navigation BETWEEN views, then MVVM can take over and provide the interaction on that view. A large effort has been made to maintain full compatibility with the out of the box feature sets.&lt;br /&gt;
&lt;h2&gt;Documentation/More information at &lt;a href="http://windowsphonefoundations.net/"&gt;http://windowsphonefoundations.net/&lt;/a&gt;&lt;/h2&gt;&lt;h2&gt;See an example of many of the features at &lt;a href="http://jake.ginnivan.net/windows-phone-mvc-update"&gt;http://jake.ginnivan.net/windows-phone-mvc-update&lt;/a&gt;&lt;/h2&gt;&lt;h2&gt;Google Group for discussion/asking questions at &lt;a href="https://groups.google.com/group/windowsphonemvc"&gt;https://groups.google.com/group/windowsphonemvc&lt;/a&gt;&lt;/h2&gt;
&lt;h1&gt;Framework Features&lt;/h1&gt;
 - Strongly Typed Navigation, with objects as parameters support (Controller&amp;lt;HomeController&amp;gt;().NavigateTo(c=&amp;gt;c.SomeAction(StateArgument)))&lt;br /&gt; - Custom Shell, Navigator and Journal to give better control over navigation of WP7 (like back stack manipulation, in NoDo! And stuff like BackTo&amp;lt;HomeController&amp;gt;(c=&amp;gt;c.Main());)&lt;br /&gt; - TransitionFrame comes out of the box, for nice navigation animations using the Silverlight Toolkits Transitions&lt;br /&gt; - FAST! I am constantly tweaking the internals to make sure all the awesomeness does not have a massive performance hit&lt;br /&gt; - Ability to pass arguments in navigation, rather than uri query strings (had to mention this twice because it is so handy)&lt;br /&gt; - Easy access to Obscured and Activated events on your view model&lt;br /&gt; - Full Testable! All major WP7 classes (WindowsPhoneFrame, WindowsPhoneApplication etc) all have Interfaces and are wrapped to allow you to test&lt;br /&gt; - Some helpers around Async. Execute.AsyncPattern or Execute.AsyncPatternWithResult synchronise async calls&lt;br /&gt; - Task/Chooser support, in a testable way&lt;br /&gt; - Convention based Controller and View discovery&lt;br /&gt; - Autofac Support Via an Extension&lt;br /&gt; - Easy access to page or application transient storage&lt;br /&gt; - Simple tombstoning support&lt;br /&gt; - Awesome tracing/debugging output so you know what is happening, and see any performance bottlenecks, see &lt;a href="http://jake.ginnivan.net/wp7-mvc-trace-logging-and-debugging"&gt;http://jake.ginnivan.net/wp7-mvc-trace-logging-and-debugging&lt;/a&gt; for a look&lt;br /&gt;
&lt;h2&gt;Mango Features&lt;/h2&gt; - Search Extra&amp;#39;s support&lt;br /&gt; - Super Easy Deep Linking (easier than the default apis :P)&lt;br /&gt; - More coming soon!&lt;br /&gt;
&lt;h2&gt;Apps Using it&lt;/h2&gt;Windows Phone MVC is in production now and is being used by &lt;a href="http://transhub.wordpress.com/"&gt;http://transhub.wordpress.com/&lt;/a&gt; which is a really cool app and winner of Spotlight 2011&lt;br /&gt;&lt;br /&gt;And we are in the process of rebuilding Mahtweets for WP7 (&lt;a href="http://mahtweetswp7.codeplex.com/"&gt;http://mahtweetswp7.codeplex.com/&lt;/a&gt;) just for Mango using the framework. So head over there for a currently evolving app and see how Windows Phone MVC can help you write awesome performant WP7 apps with ease and without the frustration of the restrictiveness of the OOTB APIs.&lt;br /&gt;&lt;br /&gt;At this point I am really open to suggestions in ways to improve this framework. &lt;br /&gt;
&lt;h2&gt;Notes&lt;/h2&gt;Controller actions are executed asynchronously, this means if you are fetching data from web services, it should be done in a synchronous way, currently the best way to do this is:&lt;br /&gt;&lt;span class="codeInline"&gt; var stuff = Execute.AsyncPatternWithResults(myService.BeginGetStuff, &amp;quot;Arg1&amp;quot;, &amp;quot;Arg2&amp;quot;, myService.EndGetStuff); &lt;/span&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>JakeGinnivan</author><pubDate>Tue, 17 Apr 2012 01:49:31 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120417014931A</guid></item><item><title>Updated Wiki: Home</title><link>http://windowsphonemvc.codeplex.com/wikipage?version=9</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Windows Phone MVC is a MVC implementation for WP7. It supports strongly typed navigation with history, easier handling of windows phones lifecycle, multiple navigation frames and enables you to build testable, and maintainable applications for WP7.&lt;br /&gt;&lt;br /&gt;This project was spawned from Columbus, another WP7 framework, which was inspired from Magellan (a WPF MVC framework). I learnt a lot from those projects, and I wanted to change some core behavior of Columbus, and so WP7 MVC was born.&lt;br /&gt;&lt;br /&gt;MVVM can only get you so far, MVC is an awesome way to deal with navigation BETWEEN views, then MVVM can take over and provide the interaction on that view. A large effort has been made to maintain full compatibility with the out of the box feature sets.&lt;br /&gt;
&lt;h2&gt;Documentation/More information at &lt;a href="http://windowsphonefoundations.net/" class="externalLink"&gt;http://windowsphonefoundations.net/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;h2&gt;See an example of many of the features at &lt;a href="http://jake.ginnivan.net/windows-phone-mvc-update" class="externalLink"&gt;http://jake.ginnivan.net/windows-phone-mvc-update&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;h2&gt;Google Group for discussion/asking questions at &lt;a href="https://groups.google.com/group/windowsphonemvc" class="externalLink"&gt;https://groups.google.com/group/windowsphonemvc&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;h1&gt;Framework Features&lt;/h1&gt;
 - Strongly Typed Navigation, with objects as parameters support (Controller&amp;lt;HomeController&amp;gt;().NavigateTo(c=&amp;gt;c.SomeAction(StateArgument)))&lt;br /&gt; - Custom Shell, Navigator and Journal to give better control over navigation of WP7 (like back stack manipulation, in NoDo! And stuff like BackTo&amp;lt;HomeController&amp;gt;(c=&amp;gt;c.Main());)&lt;br /&gt; - TransitionFrame comes out of the box, for nice navigation animations using the Silverlight Toolkits Transitions&lt;br /&gt; - FAST! I am constantly tweaking the internals to make sure all the awesomeness does not have a massive performance hit&lt;br /&gt; - Ability to pass arguments in navigation, rather than uri query strings (had to mention this twice because it is so handy)&lt;br /&gt; - Easy access to Obscured and Activated events on your view model&lt;br /&gt; - Full Testable! All major WP7 classes (WindowsPhoneFrame, WindowsPhoneApplication etc) all have Interfaces and are wrapped to allow you to test&lt;br /&gt; - Some helpers around Async. Execute.AsyncPattern or Execute.AsyncPatternWithResult synchronise async calls&lt;br /&gt; - Task/Chooser support, in a testable way&lt;br /&gt; - Convention based Controller and View discovery&lt;br /&gt; - Autofac Support Via an Extension&lt;br /&gt; - Easy access to page or application transient storage&lt;br /&gt; - Simple tombstoning support&lt;br /&gt; - Awesome tracing/debugging output so you know what is happening, and see any performance bottlenecks, see &lt;a href="http://jake.ginnivan.net/wp7-mvc-trace-logging-and-debugging" class="externalLink"&gt;http://jake.ginnivan.net/wp7-mvc-trace-logging-and-debugging&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; for a look&lt;br /&gt;
&lt;h2&gt;Mango Features&lt;/h2&gt; - Search Extra&amp;#39;s support&lt;br /&gt; - Super Easy Deep Linking (easier than the default apis :P)&lt;br /&gt; - More coming soon!&lt;br /&gt;
&lt;h2&gt;Apps Using it&lt;/h2&gt;Windows Phone MVC is in production now and is being used by &lt;a href="http://transhub.wordpress.com/" class="externalLink"&gt;http://transhub.wordpress.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; which is a really cool app and winner of Spotlight 2011&lt;br /&gt;&lt;br /&gt;And we are in the process of rebuilding Mahtweets for WP7 (&lt;a href="http://mahtweetswp7.codeplex.com/" class="externalLink"&gt;http://mahtweetswp7.codeplex.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;) just for Mango using the framework. So head over there for a currently evolving app and see how Windows Phone MVC can help you write awesome performant WP7 apps with ease and without the frustration of the restrictiveness of the OOTB APIs.&lt;br /&gt;&lt;br /&gt;At this point I am really open to suggestions in ways to improve this framework. &lt;br /&gt;
&lt;h2&gt;Notes&lt;/h2&gt;Controller actions are executed asynchronously, this means if you are fetching data from web services, it should be done in a synchronous way, currently the best way to do this is:&lt;br /&gt;&lt;span class="codeInline"&gt; var stuff = Execute.AsyncPatternWithResults(myService.BeginGetStuff, &amp;quot;Arg1&amp;quot;, &amp;quot;Arg2&amp;quot;, myService.EndGetStuff); &lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>JakeGinnivan</author><pubDate>Fri, 23 Sep 2011 13:06:37 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110923010637P</guid></item><item><title>Updated Wiki: Home</title><link>http://windowsphonemvc.codeplex.com/wikipage?version=8</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Windows Phone MVC is a MVC implementation for WP7. It supports strongly typed navigation with history, easier handling of windows phones lifecycle, multiple navigation frames and enables you to build testable, and maintainable applications for WP7.&lt;br /&gt;&lt;br /&gt;This project was spawned from Columbus, another WP7 framework, which was inspired from Magellan (a WPF MVC framework). I learnt a lot from those projects, and I wanted to change some core behavior of Columbus, and so WP7 MVC was born.&lt;br /&gt;&lt;br /&gt;MVVM can only get you so far, MVC is an awesome way to deal with navigation BETWEEN views, then MVVM can take over and provide the interaction on that view. A large effort has been made to maintain full compatibility with the out of the box feature sets.&lt;br /&gt;
&lt;h2&gt;Documentation/More information at &lt;a href="http://windowsphonefoundations.net/" class="externalLink"&gt;http://windowsphonefoundations.net/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;h2&gt;See an example of many of the features at &lt;a href="http://jake.ginnivan.net/windows-phone-mvc-update" class="externalLink"&gt;http://jake.ginnivan.net/windows-phone-mvc-update&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;h1&gt;Framework Features&lt;/h1&gt;
 - Strongly Typed Navigation, with objects as parameters support (Controller&amp;lt;HomeController&amp;gt;().NavigateTo(c=&amp;gt;c.SomeAction(StateArgument)))&lt;br /&gt; - Custom Shell, Navigator and Journal to give better control over navigation of WP7 (like back stack manipulation, in NoDo! And stuff like BackTo&amp;lt;HomeController&amp;gt;(c=&amp;gt;c.Main());)&lt;br /&gt; - TransitionFrame comes out of the box, for nice navigation animations using the Silverlight Toolkits Transitions&lt;br /&gt; - FAST! I am constantly tweaking the internals to make sure all the awesomeness does not have a massive performance hit&lt;br /&gt; - Ability to pass arguments in navigation, rather than uri query strings (had to mention this twice because it is so handy)&lt;br /&gt; - Easy access to Obscured and Activated events on your view model&lt;br /&gt; - Full Testable! All major WP7 classes (WindowsPhoneFrame, WindowsPhoneApplication etc) all have Interfaces and are wrapped to allow you to test&lt;br /&gt; - Some helpers around Async. Execute.AsyncPattern or Execute.AsyncPatternWithResult synchronise async calls&lt;br /&gt; - Task/Chooser support, in a testable way&lt;br /&gt; - Convention based Controller and View discovery&lt;br /&gt; - Autofac Support Via an Extension&lt;br /&gt; - Easy access to page or application transient storage&lt;br /&gt; - Simple tombstoning support&lt;br /&gt; - Awesome tracing/debugging output so you know what is happening, and see any performance bottlenecks, see &lt;a href="http://jake.ginnivan.net/wp7-mvc-trace-logging-and-debugging" class="externalLink"&gt;http://jake.ginnivan.net/wp7-mvc-trace-logging-and-debugging&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; for a look&lt;br /&gt;
&lt;h2&gt;Mango Features&lt;/h2&gt; - Search Extra&amp;#39;s support&lt;br /&gt; - Super Easy Deep Linking (easier than the default apis :P)&lt;br /&gt; - More coming soon!&lt;br /&gt;
&lt;h2&gt;Apps Using it&lt;/h2&gt;Windows Phone MVC is in production now and is being used by &lt;a href="http://transhub.wordpress.com/" class="externalLink"&gt;http://transhub.wordpress.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; which is a really cool app and winner of Spotlight 2011&lt;br /&gt;&lt;br /&gt;And we are in the process of rebuilding Mahtweets for WP7 (&lt;a href="http://mahtweetswp7.codeplex.com/" class="externalLink"&gt;http://mahtweetswp7.codeplex.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;) just for Mango using the framework. So head over there for a currently evolving app and see how Windows Phone MVC can help you write awesome performant WP7 apps with ease and without the frustration of the restrictiveness of the OOTB APIs.&lt;br /&gt;&lt;br /&gt;At this point I am really open to suggestions in ways to improve this framework. &lt;br /&gt;
&lt;h2&gt;Notes&lt;/h2&gt;Controller actions are executed asynchronously, this means if you are fetching data from web services, it should be done in a synchronous way, currently the best way to do this is:&lt;br /&gt;&lt;span class="codeInline"&gt; var stuff = Execute.AsyncPatternWithResults(myService.BeginGetStuff, &amp;quot;Arg1&amp;quot;, &amp;quot;Arg2&amp;quot;, myService.EndGetStuff); &lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>JakeGinnivan</author><pubDate>Fri, 23 Sep 2011 12:54:27 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110923125427P</guid></item><item><title>Updated Wiki: Home</title><link>http://windowsphonemvc.codeplex.com/wikipage?version=7</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Windows Phone MVC is a MVC implementation for WP7. It supports strongly typed navigation with history, easier handling of windows phones lifecycle, multiple navigation frames and enables you to build testable, and maintainable applications for WP7.&lt;br /&gt;&lt;br /&gt;This project was spawned from Columbus, another WP7 framework, which was inspired from Magellan (a WPF MVC framework). I learnt a lot from those projects, and I wanted to change some core behavior of Columbus, and so WP7 MVC was born.&lt;br /&gt;
&lt;h2&gt;Documentation/More information at &lt;a href="http://windowsphonefoundations.net/" class="externalLink"&gt;http://windowsphonefoundations.net/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;h2&gt;See an example of many of the features at &lt;a href="http://jake.ginnivan.net/windows-phone-mvc-update" class="externalLink"&gt;http://jake.ginnivan.net/windows-phone-mvc-update&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;
The basics of the framework are functional, so far we have (list may be out of date, check release notes):&lt;br /&gt; - Strongly Typed Navigation&lt;br /&gt; - Custom Shell, Navigator and Journal to give better control over navigation of WP7&lt;br /&gt; - TransitionFrame comes out of the box, for nice navigation animations&lt;br /&gt; - Ability to pass arguments in navigation, rather than uri query strings&lt;br /&gt; - Modal Dialog support&lt;br /&gt; - Easy access to Obscured and Activated events on your view model&lt;br /&gt; - Full Testable! All major WP7 classes (WindowsPhoneFrame, WindowsPhoneApplication etc) all have Interfaces and are wrapped to allow you to test&lt;br /&gt; - Some helpers around Async. Execute.AsyncPattern or Execute.AsyncPatternWithResult synchronise async calls&lt;br /&gt; - Task/Chooser support, in a testable way&lt;br /&gt; - Convention based Controller and View discovery&lt;br /&gt; - Autofac Support Via an Extension&lt;br /&gt; - Easy access to page or application transient storage&lt;br /&gt; - Simple tombstoning support&lt;br /&gt;&lt;br /&gt;At this point I am really open to suggestions in ways to improve this framework. &lt;br /&gt;
&lt;h2&gt;Notes&lt;/h2&gt;Controller actions are executed asynchronously, this means if you are fetching data from web services, it should be done in a synchronous way, currently the best way to do this is:&lt;br /&gt;&lt;span class="codeInline"&gt; var stuff = Execute.AsyncPatternWithResults(myService.BeginGetStuff, &amp;quot;Arg1&amp;quot;, &amp;quot;Arg2&amp;quot;, myService.EndGetStuff); &lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>JakeGinnivan</author><pubDate>Fri, 23 Sep 2011 12:26:08 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110923122608P</guid></item><item><title>Updated Wiki: Home</title><link>http://windowsphonemvc.codeplex.com/wikipage?version=6</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Windows Phone MVC is a MVC implementation for WP7. It supports strongly typed navigation with history, easier handling of windows phones lifecycle, multiple navigation frames and enables you to build testable, and maintainable applications for WP7.&lt;br /&gt;&lt;br /&gt;This project was spawned from Columbus, another WP7 framework, which was inspired from Magellan (a WPF MVC framework). I learnt a lot from those projects, and I wanted to change some core behavior of Columbus, and so WP7 MVC was born.&lt;br /&gt;
&lt;h2&gt;Documentation/More information at &lt;a href="http://windowsphonefoundations.net/" class="externalLink"&gt;http://windowsphonefoundations.net/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;
The basics of the framework are functional, so far we have (list may be out of date, check release notes):&lt;br /&gt; - Strongly Typed Navigation&lt;br /&gt; - Custom Shell, Navigator and Journal to give better control over navigation of WP7&lt;br /&gt; - TransitionFrame comes out of the box, for nice navigation animations&lt;br /&gt; - Ability to pass arguments in navigation, rather than uri query strings&lt;br /&gt; - Modal Dialog support&lt;br /&gt; - Easy access to Obscured and Activated events on your view model&lt;br /&gt; - Full Testable! All major WP7 classes (WindowsPhoneFrame, WindowsPhoneApplication etc) all have Interfaces and are wrapped to allow you to test&lt;br /&gt; - Some helpers around Async. Execute.AsyncPattern or Execute.AsyncPatternWithResult synchronise async calls&lt;br /&gt; - Task/Chooser support, in a testable way&lt;br /&gt; - Convention based Controller and View discovery&lt;br /&gt; - Autofac Support Via an Extension&lt;br /&gt; - Easy access to page or application transient storage&lt;br /&gt; - Simple tombstoning support&lt;br /&gt;&lt;br /&gt;At this point I am really open to suggestions in ways to improve this framework. &lt;br /&gt;
&lt;h2&gt;Notes&lt;/h2&gt;Controller actions are executed asynchronously, this means if you are fetching data from web services, it should be done in a synchronous way, currently the best way to do this is:&lt;br /&gt;&lt;span class="codeInline"&gt; var stuff = Execute.AsyncPatternWithResults(myService.BeginGetStuff, &amp;quot;Arg1&amp;quot;, &amp;quot;Arg2&amp;quot;, myService.EndGetStuff); &lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>JakeGinnivan</author><pubDate>Tue, 05 Jul 2011 15:29:17 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110705032917P</guid></item><item><title>Updated Wiki: Home</title><link>http://windowsphonemvc.codeplex.com/wikipage?version=5</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Windows Phone MVC is a MVC implementation for WP7. It supports strongly typed navigation with history, easier handling of windows phones lifecycle, multiple navigation frames and enables you to build testable, and maintainable applications for WP7.&lt;br /&gt;&lt;br /&gt;This project was spawned from Columbus, another WP7 framework, which was inspired from Magellan (a WPF MVC framework). I learnt a lot from those projects, and I wanted to change some core behavior of Columbus, and so WP7 MVC was born.&lt;br /&gt;&lt;br /&gt;The basics of the framework are functional, so far we have:&lt;br /&gt; - Strongly Typed Navigation&lt;br /&gt; - Custom Shell, Navigator and Journal to give better control over navigation of WP7&lt;br /&gt; - TransitionFrame comes out of the box, for nice navigation animations&lt;br /&gt; - Ability to pass arguments in navigation, rather than uri query strings&lt;br /&gt; - Modal Dialog support&lt;br /&gt; - Easy access to Obscured and Activated events on your view model&lt;br /&gt; - Full Testable! All major WP7 classes (WindowsPhoneFrame, WindowsPhoneApplication etc) all have Interfaces and are wrapped to allow you to test&lt;br /&gt; - Some helpers around Async. Execute.AsyncPattern or Execute.AsyncPatternWithResult synchronise async calls&lt;br /&gt; - Task/Chooser support, in a testable way&lt;br /&gt; - Convention based Controller and View discovery&lt;br /&gt;&lt;br /&gt;Coming soon:&lt;br /&gt; - Easy access to both Page &amp;amp; Application Transient Storage. &lt;br /&gt; - Clean &amp;amp; Simple settings API to allow you save applicaion settings in a type safe way, which is persisted to ISO Storage&lt;br /&gt; - API to mark a property as a transient property, so it is automatically stored when tombstoning&lt;br /&gt; - Maybe Co routine support &lt;br /&gt; - WindowsPhoneMvc.Autofac project giving full IoC container support&lt;br /&gt;&lt;br /&gt;At this point I am really open to suggestions in ways to improve this framework. &lt;br /&gt;&lt;br /&gt;
&lt;h2&gt;Notes&lt;/h2&gt;Controller actions are executed asynchronously, this means if you are fetching data from web services, it should be done in a synchronous way, currently the best way to do this is:&lt;br /&gt;&lt;span class="codeInline"&gt; var stuff = Execute.AsyncPatternWithResults(myService.BeginGetStuff, &amp;quot;Arg1&amp;quot;, &amp;quot;Arg2&amp;quot;, myService.EndGetStuff); &lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>JakeGinnivan</author><pubDate>Sat, 28 May 2011 04:47:36 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110528044736A</guid></item><item><title>Updated Wiki: Home</title><link>http://windowsphonemvc.codeplex.com/wikipage?version=4</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Windows Phone MVC is a MVC implementation for WP7. It supports strongly typed navigation with history, easier handling of windows phones lifecycle, multiple navigation frames and enables you to build testable, and maintainable applications for WP7.&lt;br /&gt;&lt;br /&gt;This project was spawned from Columbus, another WP7 framework, which was inspired from Magellan (a WPF MVC framework). I learnt a lot from those projects, and I wanted to change some core behavior of Columbus, and so WP7 MVC was born.&lt;br /&gt;&lt;br /&gt;The basics of the framework are functional, so far we have:&lt;br /&gt; - Strongly Typed Navigation&lt;br /&gt; - Custom Shell, Navigator and Journal to give better control over navigation of WP7&lt;br /&gt; - TransitionFrame comes out of the box, for nice navigation animations&lt;br /&gt; - Ability to pass arguments in navigation, rather than uri query strings&lt;br /&gt; - Modal Dialog support&lt;br /&gt; - Easy access to Obscured and Activated events on your view model&lt;br /&gt; - Full Testable! All major WP7 classes (WindowsPhoneFrame, WindowsPhoneApplication etc) all have Interfaces and are wrapped to allow you to test&lt;br /&gt; - Some helpers around Async. Execute.AsyncPattern or Execute.AsyncPatternWithResult synchronise async calls&lt;br /&gt; - Task/Chooser support, in a testable way&lt;br /&gt; - Convention based Controller and View discovery&lt;br /&gt;&lt;br /&gt;Coming soon:&lt;br /&gt; - Easy access to both Page &amp;amp; Application Transient Storage. &lt;br /&gt; - Clean &amp;amp; Simple settings API to allow you save applicaion settings in a type safe way, which is persisted to ISO Storage&lt;br /&gt; - API to mark a property as a transient property, so it is automatically stored when tombstoning&lt;br /&gt; - Maybe Co routine support &lt;br /&gt; - WindowsPhoneMvc.Autofac project giving full IoC container support&lt;br /&gt;&lt;br /&gt;At this point I am really open to suggestions in ways to improve this framework. &lt;br /&gt;&lt;br /&gt;
&lt;h2&gt;Notes&lt;/h2&gt;Controller actions are executed asynchronously, this means if you are fetching data from web services, it should be done in a synchronous way, currently the best way to do this is:&lt;br /&gt;&lt;br /&gt;    var stuff = Execute.AsyncPatternWithResults(myService.BeginGetStuff, &amp;quot;Arg1&amp;quot;, &amp;quot;Arg2&amp;quot;, myService.EndGetStuff);&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>JakeGinnivan</author><pubDate>Sat, 28 May 2011 04:46:29 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110528044629A</guid></item><item><title>Updated Wiki: Home</title><link>http://windowsphonemvc.codeplex.com/wikipage?version=3</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Windows Phone MVC is a MVC implementation for WP7. It supports strongly typed navigation with history, easier handling of windows phones lifecycle, multiple navigation frames and enables you to build testable, and maintainable applications for WP7.&lt;br /&gt;&lt;br /&gt;This project was spawned from Columbus, another WP7 framework, which was inspired from Magellan (a WPF MVC framework). I learnt a lot from those projects, and I wanted to change some core behavior of Columbus, and so WP7 MVC was born.&lt;br /&gt;&lt;br /&gt;The basics of the framework are functional, so far we have:&lt;br /&gt; - Strongly Typed Navigation&lt;br /&gt; - Custom Shell, Navigator and Journal to give better control over navigation of WP7&lt;br /&gt; - TransitionFrame comes out of the box, for nice navigation animations&lt;br /&gt; - Ability to pass arguments in navigation, rather than uri query strings&lt;br /&gt; - Modal Dialog support&lt;br /&gt; - Easy access to Obscured and Activated events on your view model&lt;br /&gt; - Full Testable! All major WP7 classes (WindowsPhoneFrame, WindowsPhoneApplication etc) all have Interfaces and are wrapped to allow you to test&lt;br /&gt; - Some helpers around Async. Execute.AsyncPattern or Execute.AsyncPatternWithResult synchronise async calls&lt;br /&gt; - Task/Chooser support, in a testable way&lt;br /&gt;&lt;br /&gt;Coming soon:&lt;br /&gt; - Easy access to both Page &amp;amp; Application Transient Storage. &lt;br /&gt; - Clean &amp;amp; Simple settings API to allow you save applicaion settings in a type safe way, which is persisted to ISO Storage&lt;br /&gt; - API to mark a property as a transient property, so it is automatically stored when tombstoning&lt;br /&gt; - Maybe Co routine support &lt;br /&gt;&lt;br /&gt;At this point I am really open to suggestions in ways to improve this framework. &lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>JakeGinnivan</author><pubDate>Sat, 28 May 2011 04:42:58 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110528044258A</guid></item></channel></rss>