<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>simplemvvmtoolkit Discussions Rss Feed</title><link>http://simplemvvmtoolkit.codeplex.com/discussions</link><description>simplemvvmtoolkit Discussions Rss Description</description><item><title>New Post: Resharper 7 Support?</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/442114</link><description>&lt;div style="line-height: normal;"&gt;I'm a huge ReSharper fan, and this sounds like a great idea. I'll add this to the feature list for the next rev.&lt;br /&gt;
&lt;/div&gt;</description><author>tonysneed</author><pubDate>Thu, 02 May 2013 14:14:53 GMT</pubDate><guid isPermaLink="false">New Post: Resharper 7 Support? 20130502021453P</guid></item><item><title>New Post: Resharper 7 Support?</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/442114</link><description>&lt;div style="line-height: normal;"&gt;Hey there!&lt;br /&gt;
&lt;br /&gt;
ReSharper7 offers a great way to implement properties with the INotifyChanged interface, as seen here: &lt;a href="http://blogs.jetbrains.com/dotnet/2012/07/inotifypropertychanged-support-in-resharper-7/#comments" rel="nofollow"&gt;http://blogs.jetbrains.com/dotnet/2012/07/inotifypropertychanged-support-in-resharper-7/#comments&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I know that this toolkit offers a code snipper for that, but If I have a class (or multiple classes with many properties it soon becomes tedious work to type mvvmprop, hit tab and then change the property to my liking.&lt;br /&gt;
&lt;br /&gt;
With Resharper7 and Caliburn.Micro I could write all my fields, select them, hit Alt+Ins and let ReSharper do the rest, much more comfortable. &lt;br /&gt;
&lt;br /&gt;
Sadly Resharper does not offer this functionality for this toolkit. However I am understanding that the NotifyPropertyChanged method only has to be decorated with the [NotifyPropertyChangedInvocator] attribute (as described in the article) and the support would be there.&lt;br /&gt;
&lt;br /&gt;
This is a feature I'd gladly see in this toolkit. Is this possible?&lt;br /&gt;
&lt;/div&gt;</description><author>Ruhrpottpatriot</author><pubDate>Tue, 30 Apr 2013 17:01:39 GMT</pubDate><guid isPermaLink="false">New Post: Resharper 7 Support? 20130430050139P</guid></item><item><title>New Post: passing multiple selected items from grid view to viewmodel</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440919</link><description>&lt;div style="line-height: normal;"&gt;Tony,&lt;br /&gt;
&lt;br /&gt;
Could you (or anyone else for that matter) provide some insight on the best way to pass multiple selected items from a WPF grid view into a view model. I have tired using Interaction.Behaviors but with no luck. I can't seem to get any selected event to trigger within the VM.&lt;br /&gt;
&lt;br /&gt;
Cheers&lt;br /&gt;
&lt;/div&gt;</description><author>rlcrews</author><pubDate>Fri, 19 Apr 2013 14:30:54 GMT</pubDate><guid isPermaLink="false">New Post: passing multiple selected items from grid view to viewmodel 20130419023054P</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
Sorry my bad. We just need to make sure that the String token match. When Registering to receive, just make sure that the token is &amp;quot;Character&amp;quot; instead of &amp;quot;Char&amp;quot;. It should work.&lt;br /&gt;
&lt;br /&gt;
Anyway. glad to know that you worked it out.&lt;br /&gt;
&lt;/div&gt;</description><author>shakyad</author><pubDate>Tue, 16 Apr 2013 02:35:26 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130416023526A</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;Nevermind, I found it out myself. If I get back home I'll post a complete step-by-step guide how to do this. Maybe Tony is so nice and puts this into the programming reference so other beginners won't ahve the same problem (I looked up the discussions and found quite a number of topics about this).&lt;br /&gt;
&lt;br /&gt;
BTW: Great Framework Tony. &lt;em&gt;Thumbs up&lt;/em&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>Ruhrpottpatriot</author><pubDate>Mon, 15 Apr 2013 15:38:14 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130415033814P</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;Ok, that seems straightforward. However, if I include your sample in my project I get the following error:&lt;br /&gt;
&lt;br /&gt;
Expected a method with the 'void NotificationEventArgs&amp;lt;Character&amp;gt; e' signature&lt;br /&gt;
&lt;/div&gt;</description><author>Ruhrpottpatriot</author><pubDate>Mon, 15 Apr 2013 15:20:22 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130415032022P</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;In the receiving end, I would write a method with a signature:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;        void CharacterManipulationMethod(object sender, NotificationEventArgs&amp;lt;Character&amp;gt; e)
        {
             var incomingCharacter = e.Data;

        }&lt;/code&gt;&lt;/pre&gt;

You can then do anything with this incomingCharacter or just have this assigned to a property in this viewmodel of type &amp;quot;Character&amp;quot;&lt;br /&gt;
&lt;br /&gt;
so your constructor will look like:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;        public SingleCharacterViewModel()
        {
            RegisterToReceiveMessages(&amp;quot;Char&amp;quot;, CharacterManipulationMethod);
        }&lt;/code&gt;&lt;/pre&gt;

Hope this helps.&lt;br /&gt;
&lt;/div&gt;</description><author>shakyad</author><pubDate>Mon, 15 Apr 2013 02:39:13 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130415023913A</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;That works splendid. Thank you. However is there a possibility to only change the SelectedCharacter property if the selected item has been double-clicked?&lt;br /&gt;
&lt;/div&gt;</description><author>Ruhrpottpatriot</author><pubDate>Sun, 14 Apr 2013 18:42:11 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130414064211P</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
The idea is to have two property in the viewmodel.&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;ObservableCollection&amp;lt;Character&amp;gt; Characters&lt;/li&gt;
&lt;li&gt;
Character SelectedCharacter&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
Now, &lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Bind the Characters as a ItemSource of the ListBox and design the ListBoxItem to display the character&lt;/li&gt;
&lt;li&gt;Bind SelectedItem of the ListBox to the SelectedCharacter Property&lt;/li&gt;
&lt;li&gt;
Bind the Datacontext of the Detail section and bind the individual item to the property of the Character.&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
So, when you select an item, the detail will automatically display the details.&lt;br /&gt;
&lt;br /&gt;
hope this helps.&lt;br /&gt;
&lt;/div&gt;</description><author>shakyad</author><pubDate>Sun, 14 Apr 2013 16:40:20 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130414044020P</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;Ok, I guess I Understand what to do. I still got another problem tough.&lt;br /&gt;
&lt;br /&gt;
How can I send the data from the ListBoxSelectedItem to the ViewModel?&lt;br /&gt;
&lt;/div&gt;</description><author>Ruhrpottpatriot</author><pubDate>Sun, 14 Apr 2013 14:05:57 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130414020557P</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;You can do this using the MessageBus within the toolkit. If you look in the documentation under code reference you can see some samples. I've done this exact process of passing data between view models and it is pretty straight forward. There may be some code samples. Post back if you need an example but I think  you will be able to figure it out from the documentation.&lt;br /&gt;
&lt;/div&gt;</description><author>rlcrews</author><pubDate>Sun, 14 Apr 2013 04:16:20 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130414041620A</guid></item><item><title>New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/440197</link><description>&lt;div style="line-height: normal;"&gt;Ok, maybe the heading is a bit misleading. I'll try to elaborate it further.&lt;br /&gt;
&lt;br /&gt;
Currently I have toll which saves the player characters of my RPG group. Those characters are displayed in a ListBox. This i got working with no problems. Every character is showing up fine so far.&lt;br /&gt;
&lt;br /&gt;
The problem I have is the following.&lt;br /&gt;
If I double click on a character in the ListBox I want to populate a detail view on the right side of the window.&lt;br /&gt;
However to do that I somehow have to get the text of the selected item from the list box into the code behind.&lt;br /&gt;
The  ListBox on the left and the detail view on the right are two separate views and view models.&lt;br /&gt;
&lt;br /&gt;
My question is: How can I select a character from the ListBox on the left side and pass it to the detail view on the right side.&lt;br /&gt;
&lt;br /&gt;
Greetings&lt;br /&gt;
&lt;/div&gt;</description><author>Ruhrpottpatriot</author><pubDate>Sat, 13 Apr 2013 22:15:28 GMT</pubDate><guid isPermaLink="false">New Post: Pass the content of a ListBoxSelectedItem/SelectedValue to the service agent 20130413101528P</guid></item><item><title>New Post: VS 2012 designer, DesignInstance and Simple MVVM ver4. problem</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/430632</link><description>&lt;div style="line-height: normal;"&gt;I will have a look at this shortly. Stay tuned ...&lt;br /&gt;
&lt;br /&gt;
Tony&lt;br /&gt;
&lt;/div&gt;</description><author>tonysneed</author><pubDate>Tue, 19 Mar 2013 13:21:51 GMT</pubDate><guid isPermaLink="false">New Post: VS 2012 designer, DesignInstance and Simple MVVM ver4. problem 20130319012151P</guid></item><item><title>New Post: VB.NET</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/436160</link><description>&lt;div style="line-height: normal;"&gt;Unfortunately, the only sample code I wrote was in C#.  But I believe there are tools to help port C# code to VB.NET.&lt;br /&gt;
&lt;/div&gt;</description><author>tonysneed</author><pubDate>Tue, 19 Mar 2013 13:21:08 GMT</pubDate><guid isPermaLink="false">New Post: VB.NET 20130319012108P</guid></item><item><title>New Post: Dispatcher is null after clone</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/433909</link><description>&lt;div style="line-height: normal;"&gt;Sorry for not replying earlier, I didn't ever see that you had responded, thank you, that fixed it!&lt;br /&gt;
&lt;br /&gt;
Adam&lt;br /&gt;
&lt;/div&gt;</description><author>ajpierson43</author><pubDate>Mon, 18 Mar 2013 18:53:10 GMT</pubDate><guid isPermaLink="false">New Post: Dispatcher is null after clone 20130318065310P</guid></item><item><title>New Post: How can I browse the SimpleMvvmToolkit-WPF source code from a sample WPF project?</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/436569</link><description>&lt;div style="line-height: normal;"&gt;Enjoy. Please let me know if you have any questions on the toolkit. Cheers, Tony&lt;br /&gt;
&lt;/div&gt;</description><author>tonysneed</author><pubDate>Thu, 14 Mar 2013 11:45:58 GMT</pubDate><guid isPermaLink="false">New Post: How can I browse the SimpleMvvmToolkit-WPF source code from a sample WPF project? 20130314114558A</guid></item><item><title>New Post: How can I browse the SimpleMvvmToolkit-WPF source code from a sample WPF project?</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/436569</link><description>&lt;div style="line-height: normal;"&gt;To answer my own question:&lt;br /&gt;
&lt;br /&gt;
I needed to change the Project properties of SimpleMvvmToolkit-Common &amp;amp; SimpleMvvmToolkit-WPF by turning off the &amp;quot;Signing &amp;gt; Sign the assembly&amp;quot; option. I then removed their &amp;quot;assembly&amp;quot; references from my SimpleMvvmToolkit-Wpf Project and instead added References to their entries within the Solution &amp;gt; Projects section.&lt;br /&gt;
&lt;br /&gt;
Rebuilding the solution solved my problem and I am now able to see the source code to the SimpleMvvmWpf toolkit from within my SimpleMvvmToolkit-Wpf project.&lt;br /&gt;
&lt;/div&gt;</description><author>TP</author><pubDate>Thu, 14 Mar 2013 04:50:49 GMT</pubDate><guid isPermaLink="false">New Post: How can I browse the SimpleMvvmToolkit-WPF source code from a sample WPF project? 20130314045049A</guid></item><item><title>New Post: How can I browse the SimpleMvvmToolkit-WPF source code from a sample WPF project?</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/436569</link><description>&lt;div style="line-height: normal;"&gt;I just  installed &amp;quot;Simple MVVM Toolkit v4.0.0.0&amp;quot; and using Visual Studio 2012 I created a SimpleMvvmWpf project. In order to learn how the toolkit works (after reading all the docs except admittedly only quickly skimming the &amp;quot;Programming Reference&amp;quot;), I started exploring. But say I'm in CustomerViewModel.cs:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;  public class CustomerViewModel : ViewModelDetailBase&amp;lt;CustomerViewModel, Customer&amp;gt;&lt;/code&gt;&lt;/pre&gt;

I want to be able to highlight ViewModelDetailBase and hit F12 to view its source code. But then I only see metadata not the actual source code.&lt;br /&gt;
&lt;br /&gt;
The documentation Introduction says:&lt;br /&gt;
&lt;blockquote&gt;
The helper classes are located in the SimpleMvvmToolkit assembly, which you can reference from your project, or you can if you wish include the SimpleMvvmToolkit project in your Visual Studio solution, which is probably a good idea when you are getting to know the framework.&lt;br /&gt;
&lt;/blockquote&gt;
I extracted C:\Program Files (x86)\SimpleMvvmToolkit_2012\Source\SimpleMvvm-Source.zip to my separate VS2012 projects folder. Using Solution Explorer, I then added via the &amp;quot;Add &amp;gt; Existing Project&amp;quot; command:&lt;br /&gt;
&lt;br /&gt;
 SimpleMvvm\WPF\SimpleMvvmToolkit-WPF\SimpleMvvmToolkit-WPF.csproj&lt;br /&gt;
 SimpleMvvm\Common\SimpleMvvmToolkit-Common\SimpleMvvmToolkit-Common.csproj&lt;br /&gt;
&lt;br /&gt;
But that didn't seem to help? I tried building the solution but then get the following error:&lt;br /&gt;
&lt;blockquote&gt;
Error	1	Cryptographic failure while signing assembly 'SimpleMvvm\Common\SimpleMvvmToolkit-Common\obj\Debug\SimpleMvvmToolkit-Common.dll' -- 'Error reading key file 'SimpleMvvm\Common\SimpleMvvmToolkit-Common\SimpleMvvm.snk' -- The system cannot find the file specified. 'SimpleMvvm\Common\SimpleMvvmToolkit-Common\CSC	SimpleMvvmToolkit-Common&lt;br /&gt;
&lt;/blockquote&gt;
So my question is, how can I browse (and eventually even step into while debugging) the SimpleMvvmToolkit source code from within a SimpleMvvm WPF project?&lt;br /&gt;
&lt;/div&gt;</description><author>TP</author><pubDate>Thu, 14 Mar 2013 04:24:17 GMT</pubDate><guid isPermaLink="false">New Post: How can I browse the SimpleMvvmToolkit-WPF source code from a sample WPF project? 20130314042417A</guid></item><item><title>New Post: Silverlight Test</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/436298</link><description>&lt;div style="line-height: normal;"&gt;Version 4.0 of the toolkit no longer includes the Test project when creating a RIA Service solution. It turns out Silverlight testing framework is classified as experimental and not supported by Microsoft, so I had to remove it from the current version&lt;br /&gt;
 of the toolkit. However, there is nothing to stop you from adding it yourself. Sorry about that. Cheers, Tony&lt;br /&gt;
&lt;/div&gt;</description><author>tonysneed</author><pubDate>Tue, 12 Mar 2013 21:15:42 GMT</pubDate><guid isPermaLink="false">New Post: Silverlight Test 20130312091542P</guid></item><item><title>New Post: Silverlight Test</title><link>http://simplemvvmtoolkit.codeplex.com/discussions/436298</link><description>&lt;div style="line-height: normal;"&gt;Good afternoon everyone!&lt;br /&gt;
&lt;br /&gt;
I am building a Silverlight MVVM app that uses RIA Services using Visual Studio project template installed by the Simple MVVM Toolkit. The problem is when I get the solution because &amp;quot;Silverlight Test&amp;quot; project doesn't appear in the solution. I installed Simple MVVM Toolkit correctly.&lt;br /&gt;
Why doesn't appear? &lt;br /&gt;
&lt;br /&gt;
Thank!!!&lt;br /&gt;
&lt;/div&gt;</description><author>yanira</author><pubDate>Tue, 12 Mar 2013 13:23:42 GMT</pubDate><guid isPermaLink="false">New Post: Silverlight Test 20130312012342P</guid></item></channel></rss>