Tagged Questions
The cag tag has no wiki summary.
10
votes
2answers
2k 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
2k 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
291 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 ...
1
vote
1answer
1k 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 ...
1
vote
4answers
3k 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
2answers
66 views
Using Presenter in Prism
I am developing an application using PRISM in C# and WPF.
I am new to this and would like to implement the Presenter. Basically, I would like to register a Presenter instead of View in my Module.
At ...
0
votes
2answers
123 views
How to organize Enterprise scale Composite Applications (CAG)
All QuickStarts and RI examples in the CAG documentation are good but I lack the more Enterprise scale examples.
Let's say we have 40+ modules, each containing a Proxy,Facade,PresentationModel,Model ...
0
votes
2answers
576 views
Complex View in WPF
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 - service and ...
0
votes
1answer
1k 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
213 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
593 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
99 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
5answers
1k 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 ...