Tagged Questions
1
vote
1answer
59 views
When should my prism services be registered?
I've been struggling with the ideal approach to this. Right now, I have my services created in Boostrapper right before I create my application shell, in the method:
protected override ...
0
votes
1answer
132 views
How to get DirectoryModuleCatalog to work?
I am using Prism 4 and MEF for a WPF project. I have some DLL that needs to be loaded from a directory. These DLL implements IModule through IGame and are properly formed (or at least I think so) :
...
1
vote
2answers
344 views
Prism : Shell regions view change not reflecting in xaml view
I am defining two regions in shell: MainRegion and ToggleRegion. The Toggle region contains a button on clicking on that button i want to change the region in Main Region.
Here is my xaml code for ...
2
votes
1answer
262 views
Should I create separate Bootstrapper for each WPF window?
I am new in WPF and Prism. I'd like to know if I should create new bootstrapper for each new window? For Example I have "Window1" where I select element from ListBox and click button "ShowDetails" and ...
-2
votes
1answer
65 views
When to specify regions in our application when we implement Prism in WPF Application?
I am some what confused, I create an application using WPF, then I create shell and specify region, but that gives me an error even when I referred to library etc as well. I get an idea that I must ...
1
vote
1answer
551 views
How to shutdown application while bootstrapper class is still running?
I am using a Prism UnityExtensions bootstrapper class to start my WPF application. How do I shutdown the application while the unityextensions bootstrapper is still running?
See my bootstrapper ...
2
votes
0answers
612 views
How to get a RegionManager in a boot strapper in Prism [closed]
I am facing an issue while using method
this.regionManager.RegisterViewWithRegion("TextRegion", typeof(TextView));
If i write the above code in boot strapper in some method. It does not work ...
0
votes
0answers
129 views
check the number of modules in bootstrapper unit test
I'm writting a license checker for our application which is based on prism.
I need the number of modules registered in bootstrapper but I coudn't find anyway because modulecatalog and ... are ...
0
votes
2answers
212 views
Custom splash/start page for SL4 OOB application using Prism
I could use some help figuring out the best way to implement a "splash"/start-up page for my Silverlight 4 client applications that are built using Prism 2 and run out-of-browser.
I am supporting a ...
2
votes
1answer
730 views
Prism / Mef Directory Catalog SatisfyImports
In my app I have a module that I have been referencing direct from the shell (just while I get things working).
i.e.
protected override void ConfigureAggregateCatalog()
{
...
1
vote
2answers
565 views
How to create WPF/Silverlight module utilizing prism but also that can be embedded in non-prism applicationss
I want to have create a WPF or Silverlight module which cannot only be utilised by Shell's bootstrapper, but also can be embedded in non-PRISM applications.
In short is there a way PRISM module can ...
1
vote
1answer
467 views
Using Prism, how do I register my user control inside the unity boot strapper?
I am using Prism (Composite Application Framework) to build an application. I have my shell created and it has three regions( Main, menu, switchboard). I would like to load my switchboard region in ...
0
votes
2answers
1k views
Problems with Prism hosted in a WinForm ElementHost
I am having problems with hosting a WPF prism app in an ElementHost control and am desparate for help.
The PRISM app runs fine in silverlight and in a standalone WPF.
The main Shell seems to setup ...
1
vote
1answer
1k views
.NET Prism Bootstrapper GetModuleCatalog question
Can someone please explain where GetModuleCatalog (Microsoft.Practices.Composite.UnityExtensions.UnityBootstrapper.GetModuleCatalog()) is called in the Prism shell? I understand that it needs to be ...
11
votes
1answer
5k views
Looking for Prism example of Modules loading themselves into a menu
Does anyone know of WPF code examples using Prism in which modules each register themselves as a menuitem in a menu within another module?
(I've currently got an application which tries to do this ...