<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: MVVM – It’s Not Kool-Aid*</title>
	<atom:link href="http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/</link>
	<description>Code To Live. Live To Code.</description>
	<lastBuildDate>Sat, 04 Feb 2012 10:08:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Tevin</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-12055</link>
		<dc:creator>Tevin</dc:creator>
		<pubDate>Fri, 14 Oct 2011 15:41:03 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-12055</guid>
		<description>Thanks very much, Help a lot ; )</description>
		<content:encoded><![CDATA[<p>Thanks very much, Help a lot ; )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Water Damage Restoration</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-11457</link>
		<dc:creator>Water Damage Restoration</dc:creator>
		<pubDate>Sun, 14 Aug 2011 04:51:04 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-11457</guid>
		<description>Dim custID As Guid = (CType(V2_CustomerDataGrid.SelectedItem,  _
                  v2_Customer)).Cust_UUID

        Dim loadOp = context.Load(context.GetCustDetailByIDQuery(custID))

        &#039;context.Load(context.GetCustDetailByIDQuery(custID))
        &#039;CustomerDataForm1.ItemsSource = loadOp.Entities
        &#039;aaaa&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;&#039;
        Dim taskList As ObservableCollection(Of v2_Customer) = New ObservableCollection(Of v2_Customer)
        &#039;&#039; Dim custID As Guid = (CType(V2_CustomerDataGrid.SelectedItem,  _
        &#039;&#039;         v2_Customer)).Cust_UUID
        &#039;&#039; Generate some task data and add it to the task list.
        For index = 0 To taskList.Count - 1
            taskList.Add(New v2_Customer() With _
                         {.Cust_UUID = custID, .Billing_Zip = .Billing_Zip
                         })
        Next

        Dim taskListView As New PagedCollectionView(taskList)
        Me.CustomerDataForm1.ItemsSource = taskListView</description>
		<content:encoded><![CDATA[<p>Dim custID As Guid = (CType(V2_CustomerDataGrid.SelectedItem,  _<br />
                  v2_Customer)).Cust_UUID</p>
<p>        Dim loadOp = context.Load(context.GetCustDetailByIDQuery(custID))</p>
<p>        &#8216;context.Load(context.GetCustDetailByIDQuery(custID))<br />
        &#8216;CustomerDataForm1.ItemsSource = loadOp.Entities<br />
        &#8216;aaaa&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;&#8221;<br />
        Dim taskList As ObservableCollection(Of v2_Customer) = New ObservableCollection(Of v2_Customer)<br />
        &#8221; Dim custID As Guid = (CType(V2_CustomerDataGrid.SelectedItem,  _<br />
        &#8221;         v2_Customer)).Cust_UUID<br />
        &#8221; Generate some task data and add it to the task list.<br />
        For index = 0 To taskList.Count &#8211; 1<br />
            taskList.Add(New v2_Customer() With _<br />
                         {.Cust_UUID = custID, .Billing_Zip = .Billing_Zip<br />
                         })<br />
        Next</p>
<p>        Dim taskListView As New PagedCollectionView(taskList)<br />
        Me.CustomerDataForm1.ItemsSource = taskListView</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeanine</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-10954</link>
		<dc:creator>jeanine</dc:creator>
		<pubDate>Mon, 18 Jul 2011 13:01:11 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-10954</guid>
		<description>Great post with simple approach to raising data events.  Just what I needed.  For VS2010 and Silverlight 4, the Expression.samples.interactivity needs to be changed to Microsoft.Expression.Interactivity.Core and include that reference as well.  The CallDataMethod uh method has been changed to CallmethodAction.  so changes  -- si:CallMethodAction MethodName=&quot;TrimestersClicked&quot;

The MSDN for this is here --&gt; &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/microsoft.expression.interactivity.core.callmethodaction_members(v=expression.40).aspx&quot; rel=&quot;nofollow&quot;&gt;http://msdn.microsoft.com/en-us/library/microsoft.expression.interactivity.core.callmethodaction_members(v=expression.40).aspx&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Great post with simple approach to raising data events.  Just what I needed.  For VS2010 and Silverlight 4, the Expression.samples.interactivity needs to be changed to Microsoft.Expression.Interactivity.Core and include that reference as well.  The CallDataMethod uh method has been changed to CallmethodAction.  so changes  &#8212; si:CallMethodAction MethodName=&#8221;TrimestersClicked&#8221;</p>
<p>The MSDN for this is here &#8211;&gt; <a href="http://msdn.microsoft.com/en-us/library/microsoft.expression.interactivity.core.callmethodaction_members(v=expression.40).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.expression.interactivity.core.callmethodaction_members(v=expression.40).aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeanine</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-10952</link>
		<dc:creator>jeanine</dc:creator>
		<pubDate>Mon, 18 Jul 2011 12:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-10952</guid>
		<description>How was the calldatamethod changed?  thnx.</description>
		<content:encoded><![CDATA[<p>How was the calldatamethod changed?  thnx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeanine</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-10951</link>
		<dc:creator>jeanine</dc:creator>
		<pubDate>Mon, 18 Jul 2011 12:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-10951</guid>
		<description>Can you give me more here?  You have 4 projects there and none are really labled.  Or just give the information.  Thanks!</description>
		<content:encoded><![CDATA[<p>Can you give me more here?  You have 4 projects there and none are really labled.  Or just give the information.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Model-View-ViewModel &#171; MolePlex</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-8619</link>
		<dc:creator>Model-View-ViewModel &#171; MolePlex</dc:creator>
		<pubDate>Thu, 03 Feb 2011 09:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-8619</guid>
		<description>[...] MVVM </description>
		<content:encoded><![CDATA[<p>[...] MVVM</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Visual Basic Code Examples &#124; Pozitive.NeT</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-8515</link>
		<dc:creator>Visual Basic Code Examples &#124; Pozitive.NeT</dc:creator>
		<pubDate>Mon, 31 Jan 2011 04:57:55 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-8515</guid>
		<description>[...] o&#160;&#160;&#160; See Also: Silverlight QuickStarts, Silverlight Video Code Downloads, Silverlight 4 Tutorials, Silverlight Toolkit Samples, Blog Tutorials (SL HyperVideo &#124; Silverlight/MEF/HVP &#124; Project Turing RIA Services &#124; Project Turing Multiple Tables &#124; Silverlight TDD &#124; MVVM)* [...]</description>
		<content:encoded><![CDATA[<p>[...] o&#160;&#160;&#160; See Also: Silverlight QuickStarts, Silverlight Video Code Downloads, Silverlight 4 Tutorials, Silverlight Toolkit Samples, Blog Tutorials (SL HyperVideo | Silverlight/MEF/HVP | Project Turing RIA Services | Project Turing Multiple Tables | Silverlight TDD | MVVM)* [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-7692</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Thu, 16 Dec 2010 04:16:24 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-7692</guid>
		<description>It cut off my code.  take 2:

&lt;i:Interaction.Triggers&gt;  
&lt;i:EventTrigger EventName=&quot;SelectionChanged&quot;&gt;  
&lt;si:CallDataMethod Method=&quot;HandleSelectionChanged&quot; /&gt;  
&lt;/i:EventTrigger&gt;  
&lt;/i:Interaction.Triggers&gt;</description>
		<content:encoded><![CDATA[<p>It cut off my code.  take 2:</p>
<p>&lt;i:Interaction.Triggers&gt;<br />
&lt;i:EventTrigger EventName=&#8221;SelectionChanged&#8221;&gt;<br />
&lt;si:CallDataMethod Method=&#8221;HandleSelectionChanged&#8221; /&gt;<br />
&lt;/i:EventTrigger&gt;<br />
&lt;/i:Interaction.Triggers&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-7691</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Thu, 16 Dec 2010 04:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-7691</guid>
		<description>I downloaded Jason Quin&#039;s code and made the following change to PeopleView.xaml and got it to work:

&lt;i&gt;
                &lt;/i&gt;&lt;i&gt;    
                    
                &lt;/i&gt;
            </description>
		<content:encoded><![CDATA[<p>I downloaded Jason Quin&#8217;s code and made the following change to PeopleView.xaml and got it to work:</p>
<p><i><br />
                </i><i>    </p>
<p>                </i></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rod</title>
		<link>http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/comment-page-1/#comment-5354</link>
		<dc:creator>Rod</dc:creator>
		<pubDate>Tue, 28 Sep 2010 01:36:03 +0000</pubDate>
		<guid isPermaLink="false">http://jesseliberty.com/2010/05/08/mvvm-its-not-kool-aid-3/#comment-5354</guid>
		<description>@Jason Quinn: Ok, I downloaded your version and it now builds (using VS010 pro) but the selection changed event does nothing?

In this original example it calls the method HandleSelectionChanged on the VM, but on yours it calls &quot;ViewModelMethod&quot; which does nothing. I tried changing this to the method &quot;HandleSelectionChanged&quot; but it still does not fire. 

Has anyone got a working version of this in 2010? thanks</description>
		<content:encoded><![CDATA[<p>@Jason Quinn: Ok, I downloaded your version and it now builds (using VS010 pro) but the selection changed event does nothing?</p>
<p>In this original example it calls the method HandleSelectionChanged on the VM, but on yours it calls &#8220;ViewModelMethod&#8221; which does nothing. I tried changing this to the method &#8220;HandleSelectionChanged&#8221; but it still does not fire. </p>
<p>Has anyone got a working version of this in 2010? thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

