<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>mvvmlight Issue Tracker Rss Feed</title><link>http://mvvmlight.codeplex.com/WorkItem/List.aspx</link><description>mvvmlight Issue Tracker Rss Description</description><item><title>Created Unassigned: Type not found in cache error [7612]</title><link>http://mvvmlight.codeplex.com/workitem/7612</link><description>I am running into the below error the first time my ViewModel is being instantiated by the SimpleIoC.  I believe I have setup the container as it should be, but for some reason, I am still getting the below error.  Any ideas or assistance would be very much appreciated.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Microsoft.Practices.ServiceLocation.ActivationException was unhandled by user code&lt;br /&gt;  HResult&amp;#61;-2146233088&lt;br /&gt;  Message&amp;#61;Type not found in cache&amp;#58; Windows.UI.Xaml.Controls.Frame.&lt;br /&gt;  Source&amp;#61;GalaSoft.MvvmLight.Extras&lt;br /&gt;  StackTrace&amp;#58;&lt;br /&gt;       at GalaSoft.MvvmLight.Ioc.SimpleIoc.DoGetService&amp;#40;Type serviceType, String key&amp;#41; in c&amp;#58;&amp;#92;Users&amp;#92;Public&amp;#92;Downloads&amp;#92;CodePlex&amp;#92;MVVMLight&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight.Extras &amp;#40;NET35&amp;#41;&amp;#92;Ioc&amp;#92;SimpleIoc.cs&amp;#58;line 532&lt;br /&gt;       at GalaSoft.MvvmLight.Ioc.SimpleIoc.GetService&amp;#40;Type serviceType&amp;#41; in c&amp;#58;&amp;#92;Users&amp;#92;Public&amp;#92;Downloads&amp;#92;CodePlex&amp;#92;MVVMLight&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight.Extras &amp;#40;NET35&amp;#41;&amp;#92;Ioc&amp;#92;SimpleIoc.cs&amp;#58;line 768&lt;br /&gt;       at GalaSoft.MvvmLight.Ioc.SimpleIoc.MakeInstance&amp;#91;TClass&amp;#93;&amp;#40;&amp;#41; in c&amp;#58;&amp;#92;Users&amp;#92;Public&amp;#92;Downloads&amp;#92;CodePlex&amp;#92;MVVMLight&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight.Extras &amp;#40;NET35&amp;#41;&amp;#92;Ioc&amp;#92;SimpleIoc.cs&amp;#58;line 708&lt;br /&gt;  InnerException&amp;#58; &lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;Here are pieces of my code related to this&amp;#58;&lt;br /&gt;&lt;br /&gt;ViewModelLocator.cs &amp;#40;Located in my Win8 project&amp;#41;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;public class ViewModelLocator&lt;br /&gt;    &amp;#123;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; Initializes a new instance of the ViewModelLocator class.&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;summary&amp;#62;&lt;br /&gt;        public ViewModelLocator&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            ServiceLocator.SetLocatorProvider&amp;#40;&amp;#40;&amp;#41; &amp;#61;&amp;#62; SimpleIoc.Default&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            if &amp;#40;ViewModelBase.IsInDesignModeStatic&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                &amp;#47;&amp;#47; Create design time view services and models&lt;br /&gt;                &amp;#47;&amp;#47;SimpleIoc.Default.Register&amp;#60;IDataService, DesignDataService&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            else&lt;br /&gt;            &amp;#123;&lt;br /&gt;                &amp;#47;&amp;#47; Create run time view services and models&lt;br /&gt;                &amp;#47;&amp;#47;SimpleIoc.Default.Register&amp;#60;IDataService, DataService&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                SimpleIoc.Default.Register&amp;#60;INavigationService, NavigationService&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                SimpleIoc.Default.Register&amp;#60;IParseService, ParseService&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                SimpleIoc.Default.Register&amp;#60;IServiceHandler, ServiceHandler&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;&lt;br /&gt;            SimpleIoc.Default.Register&amp;#60;MainViewModel&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            SimpleIoc.Default.Register&amp;#60;ActionViewModel&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        public MainViewModel MainVM&lt;br /&gt;        &amp;#123;&lt;br /&gt;            get&lt;br /&gt;            &amp;#123;&lt;br /&gt;                return ServiceLocator.Current.GetInstance&amp;#60;MainViewModel&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        public ActionViewModel ActionVM&lt;br /&gt;        &amp;#123;&lt;br /&gt;            get&lt;br /&gt;            &amp;#123;&lt;br /&gt;                return ServiceLocator.Current.GetInstance&amp;#60;ActionViewModel&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;        &lt;br /&gt;        public static void Cleanup&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47; TODO Clear the ViewModels&lt;br /&gt;        &amp;#125;&lt;br /&gt;    &amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;MainViewModel.cs Constructor&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;public class MainViewModel &amp;#58; ViewModelBase&lt;br /&gt;    &amp;#123;&lt;br /&gt;        &amp;#35;region Variables&lt;br /&gt;&lt;br /&gt;        private readonly INavigationService _navigationService&amp;#59;&lt;br /&gt;        private readonly IParseService _parseService&amp;#59;&lt;br /&gt;&lt;br /&gt;        &amp;#35;endregion&lt;br /&gt;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; Initializes a new instance of the MainViewModel class.&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;summary&amp;#62;&lt;br /&gt;        public MainViewModel&amp;#40;INavigationService navigationService, IParseService parseService&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            if &amp;#40;IsInDesignMode&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                &amp;#47;&amp;#47; Code runs in Blend --&amp;#62; create design time data.&lt;br /&gt;            &amp;#125;&lt;br /&gt;            else&lt;br /&gt;            &amp;#123;&lt;br /&gt;                _navigationService &amp;#61; navigationService&amp;#59;&lt;br /&gt;                _parseService &amp;#61; parseService&amp;#59;&lt;br /&gt;                BuildCommonData&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;...&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;</description><author>dolowoyo</author><pubDate>Tue, 18 Jun 2013 17:08:59 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Type not found in cache error [7612] 20130618050859P</guid></item><item><title>Commented Issue: Implement [CallerMemberName] for RaisePropertyChanged [7603]</title><link>http://mvvmlight.codeplex.com/workitem/7603</link><description>Hi it would be great to have a propertychanged call with the callermembername attribute for .net 4.5 applications&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;system.runtime.compilerservices.callermembernameattribute.aspx&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;        protected virtual void RaiseThisChanged&amp;#40;&amp;#91;CallerMemberName&amp;#93; string propertyName &amp;#61; &amp;#34;&amp;#34;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            VerifyPropertyName&amp;#40;propertyName&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            var handler &amp;#61; PropertyChanged&amp;#59;&lt;br /&gt;            if &amp;#40;handler &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                handler&amp;#40;this, new PropertyChangedEventArgs&amp;#40;propertyName&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;But it would be better to name it to RaiseThisChanged or something because you wouldn&amp;#39;t be able to use the normal RaisePropertyChanged&amp;#40;&amp;#34;Property&amp;#34;&amp;#41; call.&lt;br /&gt;Comments: Hey there,&amp;#10;&amp;#10;This is already implemented, i will publish with V4.2. Expect a preview on Codeplex very soon with other improvements.&amp;#10;&amp;#10;cheers&amp;#10;Laurent&amp;#10;</description><author>lbugnion</author><pubDate>Wed, 12 Jun 2013 06:57:17 GMT</pubDate><guid isPermaLink="false">Commented Issue: Implement [CallerMemberName] for RaisePropertyChanged [7603] 20130612065717A</guid></item><item><title>Commented Issue: Implement [CallerMemberName] for RaisePropertyChanged [7603]</title><link>http://mvvmlight.codeplex.com/workitem/7603</link><description>Hi it would be great to have a propertychanged call with the callermembername attribute for .net 4.5 applications&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;system.runtime.compilerservices.callermembernameattribute.aspx&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;        protected virtual void RaiseThisChanged&amp;#40;&amp;#91;CallerMemberName&amp;#93; string propertyName &amp;#61; &amp;#34;&amp;#34;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            VerifyPropertyName&amp;#40;propertyName&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            var handler &amp;#61; PropertyChanged&amp;#59;&lt;br /&gt;            if &amp;#40;handler &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                handler&amp;#40;this, new PropertyChangedEventArgs&amp;#40;propertyName&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;But it would be better to name it to RaiseThisChanged or something because you wouldn&amp;#39;t be able to use the normal RaisePropertyChanged&amp;#40;&amp;#34;Property&amp;#34;&amp;#41; call.&lt;br /&gt;Comments: &amp;#43;1 here. Apparently this is an efficient way to do things, please support. &amp;#58;&amp;#41;</description><author>Havremunken</author><pubDate>Wed, 12 Jun 2013 06:02:16 GMT</pubDate><guid isPermaLink="false">Commented Issue: Implement [CallerMemberName] for RaisePropertyChanged [7603] 20130612060216A</guid></item><item><title>Created Unassigned: MVVM Light Toolkit V4 RTM - Missing Shapes in Blend Expression 4 [7611]</title><link>http://mvvmlight.codeplex.com/workitem/7611</link><description>Hi&lt;br /&gt;&lt;br /&gt;I made a MVVM light 7.1 project in VS 2010, I then opened it up in Blend 4.  &lt;br /&gt;&lt;br /&gt;I only see 2 shapes. If I make a non MVVM light project I see about 16 shapes.&lt;br /&gt;&lt;br /&gt;Why am I missing these shapes&amp;#63;&lt;br /&gt;</description><author>chobo2</author><pubDate>Mon, 10 Jun 2013 21:43:27 GMT</pubDate><guid isPermaLink="false">Created Unassigned: MVVM Light Toolkit V4 RTM - Missing Shapes in Blend Expression 4 [7611] 20130610094327P</guid></item><item><title>Created Unassigned: EventToCommand xaml error, "A value of type 'EventToCommand' cannot be added to a collection or dictionary of type 'TriggerActionCollection'." [7610]</title><link>http://mvvmlight.codeplex.com/workitem/7610</link><description>I&amp;#39;m trying to implement EventToCommand within one of my views, but when I add the code &amp;#40;below&amp;#41;, then I get a parser error&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#34;A value of type &amp;#39;EventToCommand&amp;#39; cannot be added to a collection or dictionary of type &amp;#39;TriggerActionCollection&amp;#39;.&amp;#34;&lt;br /&gt;&lt;br /&gt;Is this code configured correctly&amp;#63;  Seems to be the same as many other online examples I&amp;#39;ve seen.  Thanks in advance for any assistance.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;xmlns&amp;#58;galaSoft&amp;#61;&amp;#34;clr-namespace&amp;#58;GalaSoft.MvvmLight.Command&amp;#59;assembly&amp;#61;GalaSoft.MvvmLight.Extras.SL5&amp;#34;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;#60;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;    &amp;#60;i&amp;#58;EventTrigger EventName&amp;#61;&amp;#34;KeyDown&amp;#34;&amp;#62;&lt;br /&gt;        &amp;#60;galaSoft&amp;#58;EventToCommand Command&amp;#61;&amp;#34;&amp;#123;Binding Test&amp;#125;&amp;#34; PassEventArgsToCommand&amp;#61;&amp;#34;True&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;i&amp;#58;EventTrigger&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;i&amp;#58;Interaction.Triggers&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;</description><author>steelers0118</author><pubDate>Mon, 10 Jun 2013 15:31:27 GMT</pubDate><guid isPermaLink="false">Created Unassigned: EventToCommand xaml error, "A value of type 'EventToCommand' cannot be added to a collection or dictionary of type 'TriggerActionCollection'." [7610] 20130610033127P</guid></item><item><title>Commented Issue: Register throws exception when class without ctor and static field is registered [7595]</title><link>http://mvvmlight.codeplex.com/workitem/7595</link><description>See this question &amp;#40;http&amp;#58;&amp;#47;&amp;#47;stackoverflow.com&amp;#47;questions&amp;#47;13284526&amp;#47;in-winrt-static-field-not-initialized-at-all&amp;#47;13285323&amp;#35;13285323&amp;#41; on Stackoverflow.&lt;br /&gt;&lt;br /&gt;The problem is the method GetConstructorInfo in the SimpleIoc class which throws an exception &amp;#34;Multiple constructors found but none marked with PreferredConstructor&amp;#34;, cause the class has a default ctor and a static ctor.&lt;br /&gt;Comments: Same here, I got these two constructors in MainViewModel, but I am getting exception that none has PreferredConstructor attribute&amp;#58;&amp;#10;&amp;#10;        public MainViewModel&amp;#40;&amp;#41;&amp;#10;        &amp;#123;&amp;#10;        &amp;#125;&amp;#10;&amp;#10;        &amp;#91;PreferredConstructor&amp;#93;&amp;#10;        public MainViewModel&amp;#40;INavigationService navigationService&amp;#41;&amp;#10;        &amp;#123;&amp;#10;            _navigationService &amp;#61; navigationService&amp;#59;&amp;#10;            InitializeCommands&amp;#40;&amp;#41;&amp;#59;&amp;#10;        &amp;#125;</description><author>Necroman</author><pubDate>Sun, 19 May 2013 09:51:39 GMT</pubDate><guid isPermaLink="false">Commented Issue: Register throws exception when class without ctor and static field is registered [7595] 20130519095139A</guid></item><item><title>Edited Feature: Feature request: IEventArgsConverter for EventToCommand [6908]</title><link>http://mvvmlight.codeplex.com/workitem/6908</link><description>First I&amp;#39;m in the camp were it is unaccaptable to allow UI references in my ViewModel. The ViewModel should not be aware of the View and that includes references to UI elements or anything under System.Windows.Controls namespace. To allow this scenario for RelayCommands that require event arguments this new feature would be needed.&lt;br /&gt;&lt;br /&gt;I&amp;#39;d like to be able to handle my event arguements in a converter before it goes to the ViewModel. As of right now the toolkit just sends whatever event arguements are defined by the UI to the ViewModel. Any class implementing IEventArgsConverter would be able intercept the event arguments from an EventToComand and output a System.Object to the wired up RelayCommand. This would work just like we already use System.Windows.Data.IValueConverter in XAML data-binding.&lt;br /&gt;</description><author>lbugnion</author><pubDate>Sat, 18 May 2013 21:35:35 GMT</pubDate><guid isPermaLink="false">Edited Feature: Feature request: IEventArgsConverter for EventToCommand [6908] 20130518093535P</guid></item><item><title>Commented Issue: RelayCommand fails if delegate contains a non-constant method parameter [7605]</title><link>http://mvvmlight.codeplex.com/workitem/7605</link><description>I&amp;#39;ve come across what I think is a bug in RelayCommand &amp;#40;at least for WPF 4.0&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; If you attempt to construct a RelayCommand with a lambda expression composed entirely of compile-time constants, e.g., __&amp;#40;&amp;#41; &amp;#61;&amp;#62; DoSomething&amp;#40;2&amp;#41;__, it works as expected.&lt;br /&gt;&amp;#42; However, if the lambda expression contains a method call with a parameter, and the value passed into that parameter is determined at runtime, e.g., __&amp;#40;&amp;#41; &amp;#61;&amp;#62; DoSomething&amp;#40;number&amp;#41;__, nothing happens when the command is executed.&lt;br /&gt;&lt;br /&gt;If you put the code below into a WPF 4.0 project and build it in Debug mode, you will notice that if you click &amp;#34;Do Something&amp;#34;, nothing happens, but if you click &amp;#34;Do Something Else&amp;#34;, a &amp;#34;2&amp;#34; appears in the output window. &amp;#40;Similarly, if you put a breakpoint in the DoSomething method, it will only be hit if you click &amp;#34;Do Something Else&amp;#34;.&amp;#41;&lt;br /&gt;&lt;br /&gt;MainWindow.xaml&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;Window xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34;&lt;br /&gt;        xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;        xmlns&amp;#58;d&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;expression&amp;#47;blend&amp;#47;2008&amp;#34;&lt;br /&gt;        xmlns&amp;#58;mc&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.openxmlformats.org&amp;#47;markup-compatibility&amp;#47;2006&amp;#34;&lt;br /&gt;        xmlns&amp;#58;local&amp;#61;&amp;#34;clr-namespace&amp;#58;WpfApplication1&amp;#34;&lt;br /&gt;        mc&amp;#58;Ignorable&amp;#61;&amp;#34;d&amp;#34;&lt;br /&gt;        x&amp;#58;Class&amp;#61;&amp;#34;WpfApplication1.MainWindow&amp;#34;&lt;br /&gt;        Title&amp;#61;&amp;#34;MainWindow&amp;#34;&lt;br /&gt;        Height&amp;#61;&amp;#34;400&amp;#34;&lt;br /&gt;        Width&amp;#61;&amp;#34;400&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;Window.DataContext&amp;#62;&lt;br /&gt;        &amp;#60;local&amp;#58;MainWindowViewModel &amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Window.DataContext&amp;#62;&lt;br /&gt;    &amp;#60;StackPanel&amp;#62;&lt;br /&gt;        &amp;#60;Button Content&amp;#61;&amp;#34;Do Something&amp;#34;&lt;br /&gt;                Command&amp;#61;&amp;#34;&amp;#123;Binding DoSomethingCommand&amp;#125;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;Button Margin&amp;#61;&amp;#34;0,10,0,0&amp;#34;&lt;br /&gt;                Content&amp;#61;&amp;#34;Do Something Else&amp;#34;&lt;br /&gt;                Command&amp;#61;&amp;#34;&amp;#123;Binding DoSomethingElseCommand&amp;#125;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;StackPanel&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;Window&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;MainWindowViewModel.cs&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;namespace WpfApplication1&lt;br /&gt;&amp;#123;&lt;br /&gt;    public class MainWindowViewModel &amp;#58; ViewModelBase&lt;br /&gt;    &amp;#123;&lt;br /&gt;        public ICommand DoSomethingCommand &amp;#123; get&amp;#59; private set&amp;#59; &amp;#125;&lt;br /&gt;        public ICommand DoSomethingElseCommand &amp;#123; get&amp;#59; private set&amp;#59; &amp;#125;&lt;br /&gt;&lt;br /&gt;        public MainWindowViewModel&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            DoSomethingCommand &amp;#61; GetCommand&amp;#40;2&amp;#41;&amp;#59;&lt;br /&gt;            DoSomethingElseCommand &amp;#61; new RelayCommand&amp;#40;&amp;#40;&amp;#41; &amp;#61;&amp;#62; DoSomething&amp;#40;2&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        private ICommand GetCommand&amp;#40;int number&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            return new RelayCommand&amp;#40;&amp;#40;&amp;#41; &amp;#61;&amp;#62; DoSomething&amp;#40;number&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        private void DoSomething&amp;#40;int number&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            Debug.Print&amp;#40;number.ToString&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;    &amp;#125;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Comments: Here are links&amp;#58;&amp;#10;&amp;#8226;&amp;#9;MVVM-WPF XAML Mark-up Binding Extensions - http&amp;#58;&amp;#47;&amp;#47;wpfmvvmbindingext.codeplex.com&amp;#10;&amp;#8226;&amp;#9;MVVM-WPF XAML Mark-up Dependency Injection Binding Extensions - http&amp;#58;&amp;#47;&amp;#47;wpfmvvmbindingiocext.codeplex.com &amp;#10;&amp;#10;They will help to solve </description><author>AlexPaskhin</author><pubDate>Sat, 18 May 2013 16:07:10 GMT</pubDate><guid isPermaLink="false">Commented Issue: RelayCommand fails if delegate contains a non-constant method parameter [7605] 20130518040710P</guid></item><item><title>Commented Issue: mvvminpc snippet not available after nuget-based install? [7574]</title><link>http://mvvmlight.codeplex.com/workitem/7574</link><description>I&amp;#39;ve created a new WPF application and used nuget to install MVVM Light. The default MainViewModel states in a comment that the &amp;#34;mvvminpc&amp;#34; snippet is available to add bindable properties.&lt;br /&gt;&lt;br /&gt;However, typing this snippet doesn&amp;#39;t actually do anything nor does it show up in intellisense. How can I make it available&amp;#63;&lt;br /&gt;Comments: I am using VS Express 2012 for Windows Phone on Windows 8 Pro, installed the MVVM Light and the snippets is not showing.  There is a solution to manually add the snippet, but couldn&amp;#39;t found the folder.</description><author>ah_lun</author><pubDate>Fri, 17 May 2013 16:30:52 GMT</pubDate><guid isPermaLink="false">Commented Issue: mvvminpc snippet not available after nuget-based install? [7574] 20130517043052P</guid></item><item><title>Edited Unassigned: New Messenger.Default.IsRegistered&lt;&gt; to help debugging Messenger issues. [7609]</title><link>http://mvvmlight.codeplex.com/workitem/7609</link><description>For purposes of Debugging, it would be great to include properties and methods that would help debug whether a particular message has been registered and what class&amp;#40;es&amp;#41; are registered to that message. This would help narrow down issues regarding improper registered&amp;#92; unregistered of messages.&lt;br /&gt;</description><author>tryan</author><pubDate>Tue, 07 May 2013 14:57:04 GMT</pubDate><guid isPermaLink="false">Edited Unassigned: New Messenger.Default.IsRegistered&lt;&gt; to help debugging Messenger issues. [7609] 20130507025704P</guid></item><item><title>Created Unassigned: Messenger.Default.IsRegistered&lt;&gt; method returns whether a specific message is registered [7609]</title><link>http://mvvmlight.codeplex.com/workitem/7609</link><description>For purposes of Debugging, it would be great to include properties and methods that would help debug whether a particular message has been registered and what class&amp;#40;es&amp;#41; are registered to that message. This would help narrow down issues regarding improper registered&amp;#92; unregistered of messages.&lt;br /&gt;</description><author>tryan</author><pubDate>Tue, 07 May 2013 14:56:25 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Messenger.Default.IsRegistered&lt;&gt; method returns whether a specific message is registered [7609] 20130507025625P</guid></item><item><title>Commented Issue: Windows Phone 8 Unregister error [7599]</title><link>http://mvvmlight.codeplex.com/workitem/7599</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I have been using the following code in a windows phone 7 application for some time &amp;#40; using the binaries from WP71&amp;#41;.&lt;br /&gt;&lt;br /&gt;SimpleIOC.Default.GetInstance&amp;#60;viewModel&amp;#62;&amp;#40;&amp;#41; &lt;br /&gt;and&lt;br /&gt;SimpleIOC.Default.Unregister&amp;#40;simpleIOC.Default.GetInstance&amp;#60;viewModel&amp;#62;&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;&lt;br /&gt;In wp7 -&lt;br /&gt;calling GetInstance - returns an instance of the viewmodel.&lt;br /&gt;calling Unregister - removes the instance&lt;br /&gt;calling GetInstance - returns a new instance.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;however in WP8&amp;#58;&lt;br /&gt;calling GetInstance - returns an instance of the viewmodel.&lt;br /&gt;calling Unregister - removes the instance&lt;br /&gt;calling GetInstance - returns the following error&lt;br /&gt;&lt;br /&gt;&amp;#123;Microsoft.Practices.ServiceLocation.ActivationException&amp;#58; Type not found in cache without a key&amp;#58; MvvmLightTestApp.ViewModel.SecondaryViewModel&lt;br /&gt;   at GalaSoft.MvvmLight.Ioc.SimpleIoc.DoGetService&amp;#40;Type serviceType, String key&amp;#41;&lt;br /&gt;   at GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance&amp;#91;TService&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   at MvvmLightTestApp.MainPage.Button_Click_1&amp;#40;Object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.ButtonBase.OnClick&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Button.OnClick&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;Any help would be appreciated&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;Comments: Nevermind I solved my own problem. I was trying to pass a string as a parameter to the constructor of my viewmodel and obviously I didn&amp;#39;t have it worked out correctly with the container.</description><author>jpack61108</author><pubDate>Sat, 04 May 2013 19:05:09 GMT</pubDate><guid isPermaLink="false">Commented Issue: Windows Phone 8 Unregister error [7599] 20130504070509P</guid></item><item><title>Commented Issue: Windows Phone 8 Unregister error [7599]</title><link>http://mvvmlight.codeplex.com/workitem/7599</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I have been using the following code in a windows phone 7 application for some time &amp;#40; using the binaries from WP71&amp;#41;.&lt;br /&gt;&lt;br /&gt;SimpleIOC.Default.GetInstance&amp;#60;viewModel&amp;#62;&amp;#40;&amp;#41; &lt;br /&gt;and&lt;br /&gt;SimpleIOC.Default.Unregister&amp;#40;simpleIOC.Default.GetInstance&amp;#60;viewModel&amp;#62;&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;&lt;br /&gt;In wp7 -&lt;br /&gt;calling GetInstance - returns an instance of the viewmodel.&lt;br /&gt;calling Unregister - removes the instance&lt;br /&gt;calling GetInstance - returns a new instance.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;however in WP8&amp;#58;&lt;br /&gt;calling GetInstance - returns an instance of the viewmodel.&lt;br /&gt;calling Unregister - removes the instance&lt;br /&gt;calling GetInstance - returns the following error&lt;br /&gt;&lt;br /&gt;&amp;#123;Microsoft.Practices.ServiceLocation.ActivationException&amp;#58; Type not found in cache without a key&amp;#58; MvvmLightTestApp.ViewModel.SecondaryViewModel&lt;br /&gt;   at GalaSoft.MvvmLight.Ioc.SimpleIoc.DoGetService&amp;#40;Type serviceType, String key&amp;#41;&lt;br /&gt;   at GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance&amp;#91;TService&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   at MvvmLightTestApp.MainPage.Button_Click_1&amp;#40;Object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.ButtonBase.OnClick&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Button.OnClick&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;Any help would be appreciated&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;Comments: It appears as if it is not getting assigned a key in registration. I don&amp;#39;t know just guessing.&amp;#10;&amp;#10;Thanks for your hard work.</description><author>jpack61108</author><pubDate>Sat, 04 May 2013 18:48:00 GMT</pubDate><guid isPermaLink="false">Commented Issue: Windows Phone 8 Unregister error [7599] 20130504064800P</guid></item><item><title>Commented Issue: Windows Phone 8 Unregister error [7599]</title><link>http://mvvmlight.codeplex.com/workitem/7599</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I have been using the following code in a windows phone 7 application for some time &amp;#40; using the binaries from WP71&amp;#41;.&lt;br /&gt;&lt;br /&gt;SimpleIOC.Default.GetInstance&amp;#60;viewModel&amp;#62;&amp;#40;&amp;#41; &lt;br /&gt;and&lt;br /&gt;SimpleIOC.Default.Unregister&amp;#40;simpleIOC.Default.GetInstance&amp;#60;viewModel&amp;#62;&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt;&lt;br /&gt;In wp7 -&lt;br /&gt;calling GetInstance - returns an instance of the viewmodel.&lt;br /&gt;calling Unregister - removes the instance&lt;br /&gt;calling GetInstance - returns a new instance.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;however in WP8&amp;#58;&lt;br /&gt;calling GetInstance - returns an instance of the viewmodel.&lt;br /&gt;calling Unregister - removes the instance&lt;br /&gt;calling GetInstance - returns the following error&lt;br /&gt;&lt;br /&gt;&amp;#123;Microsoft.Practices.ServiceLocation.ActivationException&amp;#58; Type not found in cache without a key&amp;#58; MvvmLightTestApp.ViewModel.SecondaryViewModel&lt;br /&gt;   at GalaSoft.MvvmLight.Ioc.SimpleIoc.DoGetService&amp;#40;Type serviceType, String key&amp;#41;&lt;br /&gt;   at GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance&amp;#91;TService&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   at MvvmLightTestApp.MainPage.Button_Click_1&amp;#40;Object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.ButtonBase.OnClick&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Button.OnClick&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;Any help would be appreciated&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;Comments: I am having kind of the same issue. Difference mine is on windows 8. My main page view model works perfectly and I have my secondary page view and viewModel set up the same way. When I navigate to the secondary page before the page loads I get this exception&amp;#58;&amp;#10;&amp;#10;Type not found in cache&amp;#58;System.String&amp;#10;&amp;#10;with this StackTrace&amp;#58;&amp;#10;&amp;#10;   at GalaSoft.MvvmLight.Ioc.SimpleIoc.DoGetService&amp;#40;Type serviceType, String key&amp;#41; in d&amp;#58;&amp;#92;GalaSoft&amp;#92;mydotnet&amp;#92;MvvmLight&amp;#92;Source&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight.Extras &amp;#40;NET35&amp;#41;&amp;#92;Ioc&amp;#92;SimpleIoc.cs&amp;#58;line 532&amp;#10;   at GalaSoft.MvvmLight.Ioc.SimpleIoc.GetService&amp;#40;Type serviceType&amp;#41; in d&amp;#58;&amp;#92;GalaSoft&amp;#92;mydotnet&amp;#92;MvvmLight&amp;#92;Source&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight.Extras &amp;#40;NET35&amp;#41;&amp;#92;Ioc&amp;#92;SimpleIoc.cs&amp;#58;line 768&amp;#10;   at GalaSoft.MvvmLight.Ioc.SimpleIoc.MakeInstance&amp;#91;TClass&amp;#93;&amp;#40;&amp;#41; in d&amp;#58;&amp;#92;GalaSoft&amp;#92;mydotnet&amp;#92;MvvmLight&amp;#92;Source&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight.Extras &amp;#40;NET35&amp;#41;&amp;#92;Ioc&amp;#92;SimpleIoc.cs&amp;#58;line 708&amp;#10;&amp;#10;I have the latest binaries installed and Visual Studio 2012 is updated to update 2.&amp;#10;&amp;#10;Please Help.</description><author>jpack61108</author><pubDate>Sat, 04 May 2013 18:26:34 GMT</pubDate><guid isPermaLink="false">Commented Issue: Windows Phone 8 Unregister error [7599] 20130504062634P</guid></item><item><title>Commented Issue: mvvminpc snippet not available after nuget-based install? [7574]</title><link>http://mvvmlight.codeplex.com/workitem/7574</link><description>I&amp;#39;ve created a new WPF application and used nuget to install MVVM Light. The default MainViewModel states in a comment that the &amp;#34;mvvminpc&amp;#34; snippet is available to add bindable properties.&lt;br /&gt;&lt;br /&gt;However, typing this snippet doesn&amp;#39;t actually do anything nor does it show up in intellisense. How can I make it available&amp;#63;&lt;br /&gt;Comments: Hello,&amp;#10;&amp;#10;Just looking for this snipped for a few minutes, before finding this post. Could you add the snipped, or a link to it in the class&amp;#63;&amp;#10;&amp;#10;Fabrice</description><author>GenFa</author><pubDate>Sun, 28 Apr 2013 06:24:29 GMT</pubDate><guid isPermaLink="false">Commented Issue: mvvminpc snippet not available after nuget-based install? [7574] 20130428062429A</guid></item><item><title>Closed Issue: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608]</title><link>http://mvvmlight.codeplex.com/workitem/7608</link><description>When using a &lt;br /&gt;    Messenger&amp;#60;Something&amp;#62;.Send&amp;#40;something&amp;#41; &lt;br /&gt;method, occasionally a popup comes, titled&amp;#58;&lt;br /&gt;    Find Source&amp;#58; WeakActionGeneric.cs&lt;br /&gt;This file selection window starts at the following location&amp;#58;&lt;br /&gt;    d&amp;#58;&amp;#92;GalaSoft&amp;#92;mydotnet&amp;#92;MvvmLight&amp;#92;Source&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight &amp;#40;NET35&amp;#41;&amp;#92;Helpers&amp;#92;WeakActionGeneric.cs&lt;br /&gt;&lt;br /&gt;I can&amp;#39;t find the source to that file on my computer, and so I cancel the popup. This leads to the exception, which seems to contain only the following&amp;#58;&lt;br /&gt; &lt;br /&gt;    System.Reflection.TargetException occurred&lt;br /&gt;      HResult&amp;#61;-2146232829&lt;br /&gt;      Message&amp;#61;Non-static method requires a target.&lt;br /&gt;      Source&amp;#61;mscorlib&lt;br /&gt;      StackTrace&amp;#58;&lt;br /&gt;           at System.Reflection.RuntimeMethodInfo.CheckConsistency&amp;#40;Object target&amp;#41;&lt;br /&gt;      InnerException&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This exception and popup become can be seen with all exception checkboxes checked in the VS2012 DEBUG -&amp;#62; Exceptions window. Without any checkboxes checked, a silent failure occurs.&lt;br /&gt;Comments: Duplicate of 7579</description><author>lbugnion</author><pubDate>Thu, 18 Apr 2013 07:16:47 GMT</pubDate><guid isPermaLink="false">Closed Issue: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608] 20130418071647A</guid></item><item><title>Edited Issue: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608]</title><link>http://mvvmlight.codeplex.com/workitem/7608</link><description>When using a &lt;br /&gt;    Messenger&amp;#60;Something&amp;#62;.Send&amp;#40;something&amp;#41; &lt;br /&gt;method, occasionally a popup comes, titled&amp;#58;&lt;br /&gt;    Find Source&amp;#58; WeakActionGeneric.cs&lt;br /&gt;This file selection window starts at the following location&amp;#58;&lt;br /&gt;    d&amp;#58;&amp;#92;GalaSoft&amp;#92;mydotnet&amp;#92;MvvmLight&amp;#92;Source&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight &amp;#40;NET35&amp;#41;&amp;#92;Helpers&amp;#92;WeakActionGeneric.cs&lt;br /&gt;&lt;br /&gt;I can&amp;#39;t find the source to that file on my computer, and so I cancel the popup. This leads to the exception, which seems to contain only the following&amp;#58;&lt;br /&gt; &lt;br /&gt;    System.Reflection.TargetException occurred&lt;br /&gt;      HResult&amp;#61;-2146232829&lt;br /&gt;      Message&amp;#61;Non-static method requires a target.&lt;br /&gt;      Source&amp;#61;mscorlib&lt;br /&gt;      StackTrace&amp;#58;&lt;br /&gt;           at System.Reflection.RuntimeMethodInfo.CheckConsistency&amp;#40;Object target&amp;#41;&lt;br /&gt;      InnerException&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This exception and popup become can be seen with all exception checkboxes checked in the VS2012 DEBUG -&amp;#62; Exceptions window. Without any checkboxes checked, a silent failure occurs.&lt;br /&gt;</description><author>lbugnion</author><pubDate>Thu, 18 Apr 2013 07:16:30 GMT</pubDate><guid isPermaLink="false">Edited Issue: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608] 20130418071630A</guid></item><item><title>Edited Unassigned: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608]</title><link>http://mvvmlight.codeplex.com/workitem/7608</link><description>When using a &lt;br /&gt;    Messenger&amp;#60;Something&amp;#62;.Send&amp;#40;something&amp;#41; &lt;br /&gt;method, occasionally a popup comes, titled&amp;#58;&lt;br /&gt;    Find Source&amp;#58; WeakActionGeneric.cs&lt;br /&gt;This file selection window starts at the following location&amp;#58;&lt;br /&gt;    d&amp;#58;&amp;#92;GalaSoft&amp;#92;mydotnet&amp;#92;MvvmLight&amp;#92;Source&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight &amp;#40;NET35&amp;#41;&amp;#92;Helpers&amp;#92;WeakActionGeneric.cs&lt;br /&gt;&lt;br /&gt;I can&amp;#39;t find the source to that file on my computer, and so I cancel the popup. This leads to the exception, which seems to contain only the following&amp;#58;&lt;br /&gt; &lt;br /&gt;    System.Reflection.TargetException occurred&lt;br /&gt;      HResult&amp;#61;-2146232829&lt;br /&gt;      Message&amp;#61;Non-static method requires a target.&lt;br /&gt;      Source&amp;#61;mscorlib&lt;br /&gt;      StackTrace&amp;#58;&lt;br /&gt;           at System.Reflection.RuntimeMethodInfo.CheckConsistency&amp;#40;Object target&amp;#41;&lt;br /&gt;      InnerException&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This exception and popup become can be seen with all exception checkboxes checked in the VS2012 DEBUG -&amp;#62; Exceptions window. Without any checkboxes checked, a silent failure occurs.&lt;br /&gt;</description><author>lbugnion</author><pubDate>Thu, 18 Apr 2013 07:16:15 GMT</pubDate><guid isPermaLink="false">Edited Unassigned: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608] 20130418071615A</guid></item><item><title>Commented Unassigned: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608]</title><link>http://mvvmlight.codeplex.com/workitem/7608</link><description>When using a &lt;br /&gt;    Messenger&amp;#60;Something&amp;#62;.Send&amp;#40;something&amp;#41; &lt;br /&gt;method, occasionally a popup comes, titled&amp;#58;&lt;br /&gt;    Find Source&amp;#58; WeakActionGeneric.cs&lt;br /&gt;This file selection window starts at the following location&amp;#58;&lt;br /&gt;    d&amp;#58;&amp;#92;GalaSoft&amp;#92;mydotnet&amp;#92;MvvmLight&amp;#92;Source&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight &amp;#40;NET35&amp;#41;&amp;#92;Helpers&amp;#92;WeakActionGeneric.cs&lt;br /&gt;&lt;br /&gt;I can&amp;#39;t find the source to that file on my computer, and so I cancel the popup. This leads to the exception, which seems to contain only the following&amp;#58;&lt;br /&gt; &lt;br /&gt;    System.Reflection.TargetException occurred&lt;br /&gt;      HResult&amp;#61;-2146232829&lt;br /&gt;      Message&amp;#61;Non-static method requires a target.&lt;br /&gt;      Source&amp;#61;mscorlib&lt;br /&gt;      StackTrace&amp;#58;&lt;br /&gt;           at System.Reflection.RuntimeMethodInfo.CheckConsistency&amp;#40;Object target&amp;#41;&lt;br /&gt;      InnerException&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This exception and popup become can be seen with all exception checkboxes checked in the VS2012 DEBUG -&amp;#62; Exceptions window. Without any checkboxes checked, a silent failure occurs.&lt;br /&gt;Comments: Hi,&amp;#10;&amp;#10;The message you see asking to see the source code file is just a feature of the Visual Studio debugger. When an exception occurs in a referenced DLL, VS asks you where the file is &amp;#40;in case you have it&amp;#41; in order to allow you to debug. So it is not the cause of the exception, but rather a debug feature triggered by the exception.&amp;#10;&amp;#10;The exception itself is a duplicate of Issue 7579.&amp;#10;&amp;#10;Thanks&amp;#10;Laurent</description><author>lbugnion</author><pubDate>Thu, 18 Apr 2013 07:15:54 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608] 20130418071554A</guid></item><item><title>Edited Unassigned: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608]</title><link>http://mvvmlight.codeplex.com/workitem/7608</link><description>When using a &lt;br /&gt;    Messenger&amp;#60;Something&amp;#62;.Send&amp;#40;something&amp;#41; &lt;br /&gt;method, occasionally a popup comes, titled&amp;#58;&lt;br /&gt;    Find Source&amp;#58; WeakActionGeneric.cs&lt;br /&gt;This file selection window starts at the following location&amp;#58;&lt;br /&gt;    d&amp;#58;&amp;#92;GalaSoft&amp;#92;mydotnet&amp;#92;MvvmLight&amp;#92;Source&amp;#92;GalaSoft.MvvmLight&amp;#92;GalaSoft.MvvmLight &amp;#40;NET35&amp;#41;&amp;#92;Helpers&amp;#92;WeakActionGeneric.cs&lt;br /&gt;&lt;br /&gt;I can&amp;#39;t find the source to that file on my computer, and so I cancel the popup. This leads to the exception, which seems to contain only the following&amp;#58;&lt;br /&gt; &lt;br /&gt;    System.Reflection.TargetException occurred&lt;br /&gt;      HResult&amp;#61;-2146232829&lt;br /&gt;      Message&amp;#61;Non-static method requires a target.&lt;br /&gt;      Source&amp;#61;mscorlib&lt;br /&gt;      StackTrace&amp;#58;&lt;br /&gt;           at System.Reflection.RuntimeMethodInfo.CheckConsistency&amp;#40;Object target&amp;#41;&lt;br /&gt;      InnerException&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This exception and popup become can be seen with all exception checkboxes checked in the VS2012 DEBUG -&amp;#62; Exceptions window. Without any checkboxes checked, a silent failure occurs.&lt;br /&gt;</description><author>TacoSteemers</author><pubDate>Wed, 17 Apr 2013 13:08:23 GMT</pubDate><guid isPermaLink="false">Edited Unassigned: Exception, presumably because of missing class or file: WeakActionGeneric.cs [7608] 20130417010823P</guid></item></channel></rss>