<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx</link><description>Welcome to the third post in my series on navigation in Silverlight! The goal of this series of posts is to provide a simple to use framework (called Helix) for building Silverlight applications that are based on a flexible navigation mechanism and the</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9574314</link><pubDate>Wed, 29 Apr 2009 00:10:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9574314</guid><dc:creator>lance7</dc:creator><description>&lt;p&gt;Please, go on. This information is priceless.&lt;/p&gt;
</description></item><item><title>re: Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9576169</link><pubDate>Wed, 29 Apr 2009 20:53:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9576169</guid><dc:creator>mhnyborg</dc:creator><description>&lt;p&gt;Very very god work all the pieces are starting to come together.&lt;/p&gt;
&lt;p&gt;I don't understand way you aren't using unity to discover the ViewModel for the View's&lt;/p&gt;
&lt;p&gt;Another question - can helix play nice with prism?&lt;/p&gt;
</description></item><item><title>re: Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9576205</link><pubDate>Wed, 29 Apr 2009 21:11:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9576205</guid><dc:creator>dphill</dc:creator><description>&lt;p&gt;Thanks for the feedback mhnyborg.&lt;/p&gt;
&lt;p&gt;Yes, I could certainly have used the Dependency Injection pattern and Unity to hook-up the View and ViewModel. There are a couple of things with that model I don't like but it's certainly do-able. I'll put together a post on that and explore the options.&lt;/p&gt;
&lt;p&gt;I'm already using some Prism features in Helix - namely the DelegateCommand stuff - so they coexist side-by-side pretty nicely. There are some Prism features like modularity and regions that can really tie into Helix more deeply. I'm working on a blog post to show that too.&lt;/p&gt;
</description></item><item><title>Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9577664</link><pubDate>Thu, 30 Apr 2009 04:19:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9577664</guid><dc:creator>DotNetShoutout</dc:creator><description>&lt;p&gt;Thank you for submitting this cool story - Trackback from DotNetShoutout&lt;/p&gt;
</description></item><item><title>David Hill's WebLog : Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9578627</link><pubDate>Thu, 30 Apr 2009 08:49:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9578627</guid><dc:creator>progg.ru</dc:creator><description>&lt;p&gt;Thank you for submitting this cool story - Trackback from progg.ru&lt;/p&gt;
</description></item><item><title>re: Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9581846</link><pubDate>Fri, 01 May 2009 07:23:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9581846</guid><dc:creator>winrunner</dc:creator><description>&lt;p&gt;Thanks for your work on Helix and the CollectionViewModel. Pretty awesome ! &lt;/p&gt;
&lt;p&gt;I implemented the CollectionViewModel code for a datagrid. I noticed I get an error when I select a row in the grid and then sort on any column by clicking on the header. The count of the CollectionViewModel object seems to become zero. I fixed this simply by putting in a check condition for the count. There may be some better solutions I'm not aware of which could fix the same issue.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
</description></item><item><title>re: Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9582612</link><pubDate>Fri, 01 May 2009 19:51:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9582612</guid><dc:creator>dphill</dc:creator><description>&lt;p&gt;@winrunner - Thanks for your feedback, and thanks for calling the DataGrid issue out. I'll take a look at that and see if I can see what's going on.&lt;/p&gt;
&lt;p&gt;I've noticed that the DataGrid behaves differently when bound to an ICollectionView than other controls. I thought I'd accounted for these differences but it looks like I need to take a more careful look...&lt;/p&gt;
</description></item><item><title>re: Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9584866</link><pubDate>Sun, 03 May 2009 22:35:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9584866</guid><dc:creator>Erchan</dc:creator><description>&lt;p&gt;Hi David.&lt;/p&gt;
&lt;p&gt;Are there some ways to integrate your Navigation framework with Navigation framework that comes from Silverlight 3.0 beta 1? &lt;/p&gt;
&lt;p&gt;Could you please to write some thoughts about it?&lt;/p&gt;
&lt;p&gt;Sorry for English.&lt;/p&gt;
</description></item><item><title>re: Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9586217</link><pubDate>Mon, 04 May 2009 21:27:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9586217</guid><dc:creator>riles01</dc:creator><description>&lt;p&gt;I am interested in your thoughts on Erchan's thoughts, as well as your reason for creating your own route handler. Was the ASP.NET MVC route handler not sufficient or not a workable solution?&lt;/p&gt;
</description></item><item><title>re: Silverlight Navigation Part 3</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9586541</link><pubDate>Mon, 04 May 2009 23:31:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9586541</guid><dc:creator>dphill</dc:creator><description>&lt;p&gt;@Erchan - Yes, I'm working on a post to talk about navigation in SL3 &amp;amp; Helix. There are some similarities between SL3 navigation and Helix, but there are limitations with SL3 due to the lack of extensibility points... I'll keep you posted.&lt;/p&gt;
&lt;p&gt;@riles01 - I would have loved to have used the ASP.NET Routing engine. Unfortunately, there are a couple of things that prevented me from doing so. First, it's a full .NET Framework assembly so won't work in Silverlight. Second, it's really designed for ASP.NET so it has some dependencies on specific web classes, like HttpContext, etc.&lt;/p&gt;
</description></item><item><title>ViewModel and Dependency Injection</title><link>http://blogs.msdn.com/dphill/archive/2009/04/28/silverlight-navigation-part-3.aspx#9625817</link><pubDate>Mon, 18 May 2009 22:28:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9625817</guid><dc:creator>David Hill's WebLog</dc:creator><description>&lt;p&gt;In my last post – Silverlight Navigation Part 3 – I outlined a mechanism whereby you could navigate to&lt;/p&gt;
</description></item></channel></rss>