Commented Unassigned: ExtractPropertyName can be used only for properties in...
PropertySuport.ExtractPropertyName is not supported when you want to extract property:a, from other class then the caller's classb, from static method/constructor```public class ClassA { public string...
View ArticleCommented Unassigned: ExtractPropertyName can be used only for properties in...
PropertySuport.ExtractPropertyName is not supported when you want to extract property:a, from other class then the caller's classb, from static method/constructor```public class ClassA { public string...
View ArticleNew Post: View Navigation breaks with IRegionMemberLifetime and INavigationAware
Hi Damian, I'm implementing IRegionMemberLifeTime and INavigationAware in my view models in order to being able to reuse views if no refresh is required. So, KeepAlive property returns true and...
View ArticleNew Post: IModule.Initialized not getting called.
Hi Guido, I found some minor bug in your code. Access modifier for RegionViewRegistry property should be public, otherwise MEF would throw an error on module initialization. // This is more correct :)...
View ArticleNew Post: View Navigation breaks with IRegionMemberLifetime and INavigationAware
Hi Dani, Based on my understanding, the RegionMemberLifetimeBehavior (which is in charge of removing the views with KeepAlive = false) only acts when the corresponding view is deactivated. Therefore,...
View ArticleNew Post: Cleanup/disposal of views and view models
Apologies in advance for the long post. I'm having a hard time understanding if/how/when views and view models are cleaned up and GC'd/disposed. Some background on my app: it's WPF and Prism 4.1, and...
View ArticleNew Post: Cleanup/disposal of views and view models
Hi, Based on my understanding, the RegionMemberLifetime attribute is only in charge of telling if the VM has to be removed from the Region or not, which does not force the destruction of the VM....
View ArticleCommented Issue: Take advantage of Portable Class Libraries 4.5 [9617]
With Microsoft making big gains to support MVVM in the Portable Class Libraries, will Prism 4.5 be designed to take advantage of this? For example, when creating a view-model class you'd extend from...
View ArticleClosed Issue: Unrecognized attribute 'initializeMode'. Note that attribute...
Hi, <?xml version="1.0" encoding="utf-8" ?><configuration><configSections><section name="modules" type="Microsoft.Practices.Prism.Modularity.ModulesConfigurationSection,...
View ArticleClosed Issue: Bug with Prism4.1->Microsoft.Practices.Prism.Interactivity.dll....
Hi Team,I found a bug (or may be something i am not aware) in Microsoft.Practices.Prism.Interactivity.dll. When you add this dll to your project, it disable intellesense in your xaml. so if you write...
View ArticleNew Post: How to force a refresh of an entire view/all fields
Hi, I'm looking for a "best practices" pattern to use. Scenario is: Customer view is loaded, all bindings, saves and RaisePropertyChanged working correctly. User changes a few fields, presses a cancel...
View ArticleNew Post: How to force a refresh of an entire view/all fields
Hi, Based on my understanding of your scenario I believe you might need to raise the PropertyChanged event for all corresponding the properties. However, you don't need to invoke the...
View ArticleNew Post: How to force a refresh of an entire view/all fields
Works as expected, thanks!
View ArticleNew Post: remote module downloading in PRISM 2.2
Also in our Silverlight application, intermittently, we see the same NullReferenceException in XapModuleTypeLoader.GetParts() which the OP reported. This is an in-browser application, when deployed:...
View ArticleNew Post: remote module downloading in PRISM 2.2
Hi, If I understood correctly, when your Silverlight application is deployed in a web server this error does not appear; but when the application is locally installed in a machine you are experiencing...
View ArticleReviewed: Prism for .NET 4.5 (Sep 17, 2013)
Rated 3 Stars (out of 5) - Downloaded the latest Common Service Locator and it is newer than the version compiled into the Prism DLLs. Had to redirect to the new version in the app.config. Any chance...
View ArticleNew Post: remote module downloading in PRISM 2.2
Thanks for your quick reply! You've misunderstood: I've only seen this problem when actually deployed in IIS in a production environment. And this is a Silverlight app which cannot run out of browser:...
View ArticleNew Post: remote module downloading in PRISM 2.2
Hi, Sorry, it seems I got confused at the "installing the application" part. Thanks for the clarification. Reviewing the XapModuleTypeLoader we came to the same conclusion than you: either there was a...
View ArticleNew Post: IRegionMemberLifetime is Not working
//ViewModel [Export(typeof(IRegisterDetailsViewModel))] [PartCreationPolicy(CreationPolicy.NonShared)] public class RegisterDetailsViewModel : PrincipalViewModelBase,...
View ArticleNew Post: Any Notification when the view getting deactivated ?
Hi , Can anyone know about whether any event raised when the view is getting deactivated ? Otherwise Is there any way to find the notification when the view is getting deactivated ? Thanks and regards,...
View Article