New Post: Windows 8, WPF VNext, SL5, Prism?
We are currently testing Prism on .NET 4.5 and will have a release within the next 2 - 4 weeks. If you want to get started now, you can download the Prism v4 code from here or the download center. You...
View ArticleNew Post: How can ModuleInitializeException be handled?
Hello, I am trying to handle ModuleInitializeException (MIE) from my code but without success. It can't be done from my code because MIE is thrown in another thread. This thread initializated by...
View ArticleNew Post: How can ModuleInitializeException be handled?
Hi,Based on my understanding both approaches should be valid for handling this kind of exceptions. In my opinion the more direct approach will be to implement a customIModuleInitializer to replace the...
View ArticleNew Post: Windows 8, WPF VNext, SL5, Prism?
BlaineIf you are going to target win 8 lob with this release, it would be nice to get some guidance on not just building an app, but best practices on lifecycle, contracts and how to work with any...
View ArticleNew Post: SL5 Navigation in Prism: Content for the URI cannot be loaded
Hi,I'm implemeting a wizard like window using SL navigation in a Prism application and encounter error "Content for the URI cannot be loaded". I looked at this...
View ArticleNew Post: Windows 8, WPF VNext, SL5, Prism?
Paul can you send me an email as I would like to setup some time talk on the phone so I better understand your set of requirements.Thanks.Blaine
View ArticleNew Post: Windows 8, WPF VNext, SL5, Prism?
BlaineThanks. See my email response. But to keep the discussion going here, up thread brumfb said that there would be a public request for input about the winrt side of things. I am sure that while I...
View ArticleNew Post: How can ModuleInitializeException be handled?
Thank you for great detailed answer.I've successfully created custom MefModuleManager, by merging ModuleManager/MefModuleManager class definitions, and using your handy snippet of InitializeModule.
View ArticleNew Post: Windows 8, WPF VNext, SL5, Prism?
I like the idea of engaging with others. If anyone wants to participate in a conference call next week send me email to blainew at Microsoft. In the email header put the title Windows 8 & Prism....
View ArticleNew Post: SL5 Navigation in Prism: Content for the URI cannot be loaded
Hi, Based on my understanding, the cause of your problem is that the Silverlight navigation framework does not directly support the use of dependency injection containers, which you may need if you...
View ArticleNew Post: Windows 8, WPF VNext, SL5, Prism?
BlaineThank you for answering.[I’ve just seen Steve Ballmer live on a small developer event in Berlin, Germany. Is he always so loud? ;-)]Do you really focus only on applications for the Windows...
View ArticleNew Post: SL5 Navigation in Prism: Content for the URI cannot be loaded
In my case, the wizard is inside a module, so maybe using Prism navigation makes more sense?The wizard is in a child window, when I resolve the region manager using Service.Location, it dosn't see the...
View ArticleNew Post: SL5 Navigation in Prism: Content for the URI cannot be loaded
Hi Julie,Based on my understanding, the reason behind why the ChildWindow's region is not present in the RegionManager is because your ChildWindow has no RegionManager attached to it.By default, Prism...
View ArticleNew Post: Navigation with View Injection
I have a view which contains a tab control into which I inject a number of other views. One of the views that is in a tab has a browse button that navigates to a view where the user can select a...
View ArticleNew Post: Passing data from view to view model (TabControl within a Prism...
I am using TabControl in a Prism region like this:<UserControl ... ><ListBox ... /> <TabControlprism:RegionManager.RegionName="TabRegion"> <!-- The views that were declared in...
View ArticleNew Post: Switch between Views in different Modules using Prism and Unity
I am making a proof of concept WPF application with Prism 4 and Unity, but I run into some basic problems. In our solution we have the following projects:-AppName.Desktop -AppName.Modules.ModuleA...
View ArticleNew Post: Navigation with View Injection
Hi Andy,I'm not sure if I have understood your scenario completely. But in my experience, when calling the NavigationService.Journal.GoBack() method, if the navigated view implements the...
View ArticleNew Post: Passing data from view to view model (TabControl within a Prism...
Hi,In my opinion a possible approach to achieve this kind of scenarios could be by benefiting of theRegionContext attached property provided with the region manager, which will allow you to share to...
View ArticleNew Post: Navigation with View Injection
Agustin,The issue is definitely that the journal is not up to date as it has no knowledge of the originator view as it was injected into the tab control rather than being navigated to. I was looking...
View ArticleNew Post: Switch between Views in different Modules using Prism and Unity
Hi,Based on my understanding of your scenario, it seems that you are not registering the ModuleBView to be used with navigation.Basically, when performing a navigation request in a region, Prism will...
View Article