Commented Unassigned: Must Remove "View" from Window View [10539]
I noticed to get my app to work using the Prism 4.2 for WPF beta, you have to remove the "View" from name of Window View in order to wire up with the ViewModel. As an example, my View must be named...
View ArticleNew Post: Examples for Dialogs
Is there any examples on how to work with dialogs (OpenFile, About, MessageBox, etc.) and ViewModels for Prism v4 and WPF? I understand this is an old concept, but did not know where a good example...
View ArticleNew Post: Event aggregator - why is subscriber event only firing once?
I've got a background thread that is raising events every once in a while. I've added a Debug.WriteLine to confirm that this is indeed reaching that bit of code. I have a separate class that subscribes...
View ArticleNew Post: Docking Extension for Prism
Hi Hein, Thanks for sharing this with the rest of the community, as it might be useful for other users pursuing this scenario. I will certainly take a look into it. Please, don´t hesitate on reaching...
View ArticleNew Post: Examples for Dialogs
Hi, I believe you may find helpful the following sample about Notification and different MessageBox dialogs uploaded in the following OneDrive account:PopupWindowActionSample The solution has 3...
View ArticleNew Post: Lookup data
Hi, Any ideas about the current issue? I think the best approach is to add lookup data in the ContactModule and not creating a separate for each one. I could then create separate Views and ViewModels...
View ArticleNew Post: Lookup data
Hi, Based on my understanding, both alternatives you mentioned would work properly, and I believe that design and structure of Modules would depend on the solution's complexity and each developer's...
View ArticleCreated Unassigned: Wrong Obsolete-AttributeText in the NotificationObject...
In the NotificationObject class is an incorrectly text set in the obsolete attribute. Wrong[Obsolete("Please use Prism.PubSubEvents.PubSubEvent.")]Right[Obsolete("Please use Prism.Mvvm.BindableBase.")]
View ArticleNew Post: Event aggregator - why is subscriber event only firing once?
Hi, It would be helpful if you could describe us how are you Publishing and Subscribing the Event. Also, you could provide us with a small sample so we could get a better understanding of the scenario...
View ArticleNew Post: Event aggregator - why is subscriber event only firing once?
Hi Gabriel, thanks for the reply. I'm publishing and subscribing in the standard way, like this:- eventAggregator.GetEvent<CompositePresentationEvent<MyEvent>>().Publish(new MyEvent());...
View ArticleCreated Unassigned: UI Validation for multiple views in a region [10551]
Hi,I am trying to load multiple data entry views onto a single content region. On each View the data context (View Model) is bound to presentation objects. All the presentation objects together form a...
View ArticleNew Post: UI Validation for multiple views in a region does not work
Hi, I am trying to load multiple data entry views onto a single content region. On each View the data context (View Model) is bound to presentation objects. All the presentation objects together form a...
View ArticleNew Post: Configuration Settings Examples
How would you go about implementing configuration settings for a Prism WPF 4 app? I need to save some basic info (file path, strings, etc.) for an app and load when it is opened. It seems easier to do...
View ArticleNew Post: Where is DelegateCommand in 4.2??
I have updated my project with the Prism 4.2 pre-release nuget packages, but I don't seem to have delegate command within them?? Cannot find it to resolve. I know they're in Prism.Mvvm.
View ArticleNew Post: Where is DelegateCommand in 4.2??
Hi James, You may find the Delegate Command on the following namespace:Microsoft.Practices.Prism.Commands; It is indeed on the Prism.MVVM project solution. I hope this helps, Regards. Gabriel...
View ArticleNew Post: UI Validation for multiple views in a region does not work
Hi Jeevan, Based on my understanding, you would like to validate every View when each one gets active by showing the Validation.ErrorTemplate. Then, you could have the global command to be handled on...
View ArticleNew Post: Where is DelegateCommand in 4.2??
As far as I know this is not part of the nuget packages though is it?
View ArticleNew Post: 4.2 beta Navigation journal entries + NavigationParameters
Now that you can pass in separate Navigation parameters, it makes it a little difficult to use the Navigation Journal, as this does not include them. Before I would do this: var params = new...
View ArticleNew Post: Where is DelegateCommand in 4.2??
Hi James, I have actually reproduced the issue you mentioned regarding Prism 4.2 Pre-Released nuget package. This package would contain the following assemblies taking into account that it is a beta...
View Article