New Post: How to show image in Shell from an external assembly in WPF using...
Hi, i have a composite application that loads dynamically an external assembly using prism 5 and MEF, the module contains an image, how can i show this image on my shell? The module is loaded...
View ArticleUpdated Wiki: Documentation
Prism Documentation PagesDevelopers Guide to Microsoft Prism 5 on MSDNPrism v4 Documentation PageDevelopers Guide to Microsoft Prism 4 on MSDNPrism v1 and v2 Documentation Page
View ArticleNew Post: How to show image in Shell from an external assembly in WPF using...
Hi, I have tried to reproduce your problem, but both approaches you mentioned worked successfully on my solution. For Runtime execution, you would not need any other implementation rather than the...
View ArticleNew Post: MessageBus without PubSubEvent
Are there any performance issues with using this approach for Pub/Sub events? The idea is to wrap a message in a generic PubSubEvent so you can write the message like this:// Create the Event Message...
View ArticleNew Post: In what order does Prism navigation instantiate/navigate nested...
I've got a view/view-model (let's call it the "parent") that retrieves data in its OnNavigatedTo method. This view contains several regions of its own - these regions' views are always the same, so...
View ArticleNew Post: How to show image in Shell from an external assembly in WPF using...
Thanks a lot GOstrowsky The problem was in my the property AssemblyName, it returns the assembly name with the extension .dll I solved the problem by using the function...
View ArticleNew Post: MessageBus without PubSubEvent
Hi Martin, The Blogpost you referenced describes an approach based on a simple wrapping for the GetEvent method in particular in order to not be redundantly called each time. Based on my understanding,...
View ArticleNew Post: In what order does Prism navigation instantiate/navigate nested...
Hi, First, I would like to say that based on my understanding Navigation is performed on each Region independently. Therefore, it would not be a concrete sequential execution between Navigation on...
View ArticleNew Post: In what order does Prism navigation instantiate/navigate nested...
My application doesn't use modules or MEF, so I don't think the proposed solution is relevant. Mine is a self-contained application with all views/VMs "living" in the main WPF project. I do still have...
View ArticleCreated Unassigned: Cannot start the View-Switching Navigation_Desktop...
Error is "Could not load file or assembly 'ViewSwitchingNavigation.Calendar.dll' or one of its dependencies. The system cannot find the path specified.":"ViewSwitchingNavigation.Calendar.dll"Any...
View ArticleCommented Unassigned: Cannot start the View-Switching Navigation_Desktop...
Error is "Could not load file or assembly 'ViewSwitchingNavigation.Calendar.dll' or one of its dependencies. The system cannot find the path specified.":"ViewSwitchingNavigation.Calendar.dll"Any...
View ArticleNew Post: In what order does Prism navigation instantiate/navigate nested...
Hi andyste, Regarding your elegant concern, you could create a Registration class which would perform the process of Regions and Views Registration as it would occur on an IModule implemtened class....
View ArticleCommented Unassigned: Cannot start the View-Switching Navigation_Desktop...
Error is "Could not load file or assembly 'ViewSwitchingNavigation.Calendar.dll' or one of its dependencies. The system cannot find the path specified.":"ViewSwitchingNavigation.Calendar.dll"Any...
View ArticleNew Post: Error after updating to 5.0
On the following line, I am getting the error: Error 27 The non-generic method 'Microsoft.Practices.Unity.IUnityContainer.Resolve(System.Type, string, params...
View ArticleNew Post: Error after updating to 5.0
So I forgot to say, the quickstart app seems to be able to resolve the class "UnityContainerExtensions", as that is where the public static T Resolve<T>(this IUnityContainer container, params...
View ArticleNew Post: Error after updating to 5.0
Fixed:using Microsoft.Practices.Unity; Was removed somehow.
View ArticleNew Post: Navigation Help
I cannot seem to get navigation to work with unity. I register my view: this.regionViewRegistry.RegisterViewWithRegion("MIPRegion", typeof(Views.Designator)); Then I try to make the request:...
View ArticleNew Post: Navigation Help
Fixed: this.container.RegisterType<Object, Views.CheckedOutIncidentMIP>("WORKVIEW"); I had to override the Object type. The only issue is even though navigation is working, "OnNavigatedFrom" Is...
View ArticleNew Post: Navigation Help
So my View Models derive from a base class "MyViewModelBase" and the OnNavigatedFrom works if the base class has it, but I need the derived types to call this obviously. How can I do this?
View Article