New Post: EventAggregator Prism5 Subscribe UIThread
I'm now facing this exact issue. Did you find a solution to this?
View ArticleNew Post: MVVM light to Prism conversion
How would I achieve the following in Prism (this is MVVM light)?<i:Interaction.Triggers><local:RoutedEventTrigger RoutedEvent="{x:Static Validation.ErrorEvent}"> <e2c:EventToCommand...
View ArticleNew Post: MVVM light to Prism conversion
How would I achieve the following in Prism (this is MVVM light)? <i:Interaction.Triggers> <local:RoutedEventTrigger RoutedEvent="{x:Static Validation.ErrorEvent}"> <e2c:EventToCommand...
View ArticleNew Post: MVVM light to Prism conversion
Use the InvokeCommandAction behavior that is in the Prism.Interactivity library in Prism 5. It adds the ability to harvest event parameters when hooked up with an event trigger. See the Interactivity...
View ArticleNew Post: MVVM light to Prism conversion
Use the InvokeCommandAction behavior that is in the Prism.Interactivity library in Prism 5. It adds the ability to harvest event parameters when hooked up with an event trigger. See the Interactivity...
View ArticleNew Post: WPF 4.5 EventAggregator in App class
Hi, i need to use eventaggregator interface in my WPF App class. the reason for this, because i might have general exception, which i can handle in the application DispatcherUnhandledException event...
View ArticleNew Post: WPF 4.5 EventAggregator in App class
I would handle this by leveraging the fact that the bootstrapper has a public Container property on it. After calling Bootstrapper.Run in your App code behind, grab the Container ref and use it to...
View ArticleCommented Issue: DelegateCommand should use DelegateReference to reference...
It's a common complaint that the CanExecuteChanged handlers of DelegateCommand get unexpectedly garbage collected. While it's simple enough to work around the problem, I think it would be worth...
View ArticleCreated Unassigned: using IConfirmNavigationRequest [10734]
Hi, I have a wpf prism based application. My shell is divided into two region 1. NavigationRegion - listbox - (Contains Views Menu1View, Menu2View, Menu3View)2. DetailRegion. - contentcontrolEach...
View ArticleCommented Unassigned: Microsoft.Practices.Prism.PubSubEvents.dll causes...
Hi!Microsoft.Practices.Prism.PubSubEvents.dll causes a compiler warning in my project, because it depends on System and System.Core with Version 2.0.5.0:```There was a conflict between "System.Core,...
View ArticleNew Post: Subclasing PopupWindowAction - Prism 5
I wanted to use PopupWindowAction but using my custom Window. So I created my subclass to override CreateWindow but then realize that last version from Nuget does not have that method yet. I could...
View ArticleNew Post: Raised event of InteractionRequest becomes null
Hello Brian, We have a similar issue but the resolution [RegionMemberLifetime(KeepAlive = false)] is not helping here. We have a view that opens a UserControl (UC1) as a popup using...
View ArticleCreated Unassigned: Raised event of InteractionRequest becomes null [10735]
Hello,We have a view that opens a UserControl (UC1) as a popup using InteractionRequest<INotification>. UC1ViewRequest.Raise(new UC1ViewModel{ Title = "User Control 1"}); UC1 has a button that...
View ArticleNew Post: RegionManager does not contain nested region issue
I tried fetching the "Loaded" event, but for me the region is still not there! Also, the attached property "RegionManager.RegionManager" is not set. What could be wrong? It seems I get the Loaded event...
View ArticleNew Post: RegionManager does not contain nested region issue
I'm afraid I don't know what the issue is then, but it still sounds like a race condition in terms of when the region manager becomes aware of the region and when you are trying to navigate. If you can...
View ArticleNew Post: StockTraderRI Unity Version?...
Hi, Is there a Unity version of StockTraderRI under Prism 5.0 anywhere, if not will the V2.2 work under 5?
View ArticleNew Post: StockTraderRI Unity Version?...
Nope. RI was only built with MEF in 4.0, and there were significant refactorings across the app from the 2.2 version.
View ArticleNew Post: StockTraderRI Unity Version?...
Ok thanks, but the concept of V2.2 as far as using Unity in 5.0 will work correct? I have it upgraded from VS2008 to 2015 running successfully.
View ArticleNew Post: StockTraderRI Unity Version?...
Yes, of course. Unity is fully supported in Prism 5 (and Prism 6 which we expect to release next week for WPF and UWP - http://github.com/PrismLibrary/Prism). And I don't think we introduced any...
View Article