2
votes
2answers
250 views
In Composite WPF (Prism), what is the difference between IRegion.Add and IRegionManager.RegisterViewWithRegion?
In Composite WPF (Prism), when adding modules to the IRegionManger collection, what is the difference between using IRegion.Add and IRegionManager.RegisterViewWithRegion?
IRegion.Add
public void …
2
votes
3answers
584 views
More examples of Prism (Composite Application Library) Applications?
The examples that Microsoft's Patterns and Practices provides are quite helpful:
about a half-dozen simpler QuickStarts which touch on specific issues
the StockTrader reference implementation, which …
1
vote
1answer
227 views
How to add a Command to the items in a databound TreeView
How can I add WPF DelegateCommands to the items in a TreeView bound to an XmlDataProvider? I'm using the MVVM pattern and Composite WPF and I want the command to be called when the user double-clicks …
0
votes
1answer
54 views
How to use Prisim within an ElementHost
I'm new to Prism and I am attempting to host a Prisim control within an ElementHost. I seem to be missing something very basic. I have a single WinForm that contains an ElementHost. The following …
0
votes
2answers
224 views
Complex View in WPF
Hello Guys,
I am working on a personal project. I started with a previous post (http://stackoverflow.com/questions/1215650/point-of-sale-application-architecture).
Trying to Use- repository - …
0
votes
1answer
133 views
How to send a parameter to an object’s constructor with Unity’s Resolve<>() method?
Using Unity in Prism, I would like to send a parameter to the object's constructor like this:
PSEUDO-CODE:
SmartFormPresenter smartFormPresenter1 =
…
0
votes
1answer
104 views
Testing Composite WPF applications
How do I go about testing Composite WPF applications?
I was looking at the Composite Application Library and the Stock Trader reference implementation for examples, but I don't understand how their …
0
votes
2answers
235 views
Organizing multiple Composite WPF applications to share a single Shell
How can I organize multiple Composite WPF applications so that they share a single Shell project but populate their module catalogs from different App.config files?
I am writing a suite of …
0
votes
1answer
70 views
Registering Types at Runtime
I'm trying to figure out how to register a type at run-time using unity. Any Suggestions?
Basically I want to be able to do this:
Container.
RegisterType(Of IMyInterface)(
…
0
votes
2answers
451 views
How can I activate/deactivate a module’s view after its initialization?
This relates to Composite Application Guidance for WPF, or Prism.
I have one "MainRegion" in my shell. My various modules will be loaded into this main region. I can populate a list of available …
0
votes
4answers
547 views
Will PRISM help?
I am considering building a application using PRISM (Composite WPF Guidance/Library). The application modules will be vertically partitioned (i.e. Customers, Suppliers, Sales Orders, etc). This is …
