New Post: how to create multi-shell window application using Prism 4.0 and...
Thank you very much guys. After I double checked the code, it's because I commented out the [Export] declaration in MyView class during debugging. Now View Injection works as you suggested. Really...
View ArticleNew Post: PRISM Navigation: Will Scoped Regions fire the navigation events...
I am using nested regions in a PRISM 4.0 WPF application and having trouble getting the Navigation events of the nested regions views to fire. We have a Region, MainContentRegion, in the Shell.xaml and...
View ArticleNew Post: Display Child window WPF
Hi,In my opinion, I would consider moving the models classes to a separate project that could be referenced by all the different modules that requires them, as Damian suggested in this previous thread...
View ArticleNew Post: Display Child window WPF
Hi Agustin, I undertook the re-architecture exercise last evening as I remembered Damian advising, that was spot on and I got the child window to load but when my OnEditNote method fired all that was...
View ArticleNew Post: Display Child window WPF
Never mind Augistin, I just inspected the XAML of the HelloWorldView and think I've found the way you have worked this, with the <inf_int:PopupWindowAction.WindowContent...
View ArticleNew Post: PRISM Navigation: Will Scoped Regions fire the navigation events...
Hi,Based on my understanding, when implementing the INavigationAware interface, the OnNavigatedTo and OnNavigatedFrom methods of the corresponding view (or view model) will only be called when a...
View ArticleNew Post: PRISM Navigation: Will Scoped Regions fire the navigation events...
@aadami,For the moment, against my inner self's best judgement, we are going to pull the information together as a single view and display that within the MainContentRegion. Based on the BRD we want...
View ArticleNew Post: Load modules in parallel
Hi,I am implementing a composite application that needs to load most of the modules at startup (all of them have data to show in the view at startup) and I am afraid that if I use the existing module...
View ArticleNew Post: Display Child window WPF
Agustin, I am, unsurprisingly, confused again, my view and view model for creating/editing/viewing a note are contained in a NoteModule. With the examples you geniuses have developed the code to fire...
View ArticleNew Post: Load modules in parallel
Hi,Based on my understanding, the process of loading modules can be divided in two separate steps: loading the assembly containing the module and initializing the module.For the first step, I don't...
View ArticleNew Post: Access currently logged in User
Hi,In my opinion, a possible approach to handle this scenario could be using Shared Services to access and manage information among different modules (in this case, the logged user).Basically, you...
View ArticleNew Post: LoadModule from multiple points
That is very helpful, I will use that. Thankyou Agustin.
View ArticleNew Post: Sample WPF application using PRISM
In the new project assigned to me I have a build a WPF application using PRISM. I was looking for a sample PRISM application which defines the structure/architecture of a standard PRISM based...
View ArticleNew Post: Access currently logged in User
Thanks for response DamianI wonder if this might be the easiest solution to my other query regarding modules of an application that are envisaged to be used by many other modules to display "child...
View ArticleNew Post: Sample WPF application using PRISM
Hi,I recommend you to check the Stock Trader Reference Implementation provided with Prism, as it illustrates the baseline architecture used withPrism. Also, as you may find the Prism library also...
View ArticleNew Post: Passing context to nested regions
I have exactly the same requirement - I want modules to be able to use a view-discovery like mechanism to specify what types should be used when creating views for a given region and we also want...
View ArticleNew Post: Display Child window WPF
Hi there,Usually, a view that is being shown through an InteractionRequest is somewhat related to its "host" view, and this includes their corresponding view models. You could think of the "popup view"...
View ArticleNew Post: Access currently logged in User
Hi,It might be possible to create a Shared Service that could be in charge of showing a view inside a new window to manage theNotes when requested. As all the logic to do so will be encapsulated inside...
View ArticleNew Post: Using EventAggregator to add TabItems dynamically in prism
I need to add TabItems dynamically at run time to TabControl, I found some information in the web but it is very brief and i need some detailed steps. thanks in advance
View ArticleNew Post: Using EventAggregator to add TabItems dynamically in prism
Hi,I am not aware of the requirements of your scenario or why you want to compose theUI through the use of the EventAggregator, but based on my understanding, inPrism the dynamic composition of the UI...
View Article