Tagged Questions
Composite WPF often refers to the Prism framework which is a set of guidance from Microsoft for creating MVVM WPF applications. See also [prism].
24
votes
10answers
7k views
Do you use Microsoft's Prism (CompositeWPF) in commercial development?
Are you using or going to use Prism? I had experience with Composite Application block (composite UI for WinForms) and can say that it's an overengineered hard to use framework. I've taken a look at ...
18
votes
1answer
3k views
How does Prism compare with Caliburn?
Looking at the Prism and Caliburn frameworks as a WPF newbie, what are their relative strengths and weaknesses?
11
votes
4answers
8k views
Composite Guidance for WPF : MVVM vs MVP
I am confused. Maybe you can help me :)
I have been following the guidance of CAG and found the MVP pattern very natural to me.
Suppose I have a UI-ready Model (for example : implements ...
10
votes
2answers
1k views
How to do multiple shells in my Prism app (like MS Office)?
I try to create an application that has a window behaviour as MS Office, for example Word/Excel. The user opens the application and when clicking new, a completely new window shall appear with the ...
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 ...
9
votes
2answers
1k views
What should I use in Prism- MEF or Unity?
Found several good(related) questions here and here but all are nearly a year old.
I will like to know in the current context of Prism development what is better or at least scenario where each is ...
8
votes
3answers
3k views
Composite WPF (Prism) module resource data templates
Given that I have a shell application and a couple of separate module projects using Microsoft CompoisteWPF (Prism v2)...
On receiving a command, a module creates a new ViewModel and adds it to a ...
5
votes
2answers
398 views
StockTrader RI > Controllers, Presenters, WTF?
I am currently learning how to make advanced usage of WPF via the Prism (Composite WPF) project.
I watch many videos and examples and the demo application StockTraderRI makes me ask this question:
...
4
votes
1answer
747 views
Smart Client Guidance = Prism? Vs 2010
I have found this link http://smartclient.codeplex.com/ which has some updates for vs 2010 ....
I don't know but i always seem to get confused i.e. lack of documentation etc.....
but is this the ...
4
votes
3answers
2k views
Prism2/MVVM Close View from ViewModel
How do I close a View from its ViewModel?
I've a WPF window which has defined multiple Regions and being used as a Shell to host views for my application. I would like to have a View able to remove ...
4
votes
1answer
912 views
Share context data with all children of a control
I need all children of a view to know a piece of contextual information (the person they need to show). I also need the approach to be compatible with MVVM. I tried to do this with RegionContext in ...
3
votes
1answer
155 views
WPF GetIsInDesignMode From Inside A Converter
How would i be able to use the GetIsInDesignMode from inside a converter? It seems that the method requires the parent user control/window, a variable which is not accessible when inside a converter.
...
3
votes
1answer
781 views
High Level Modelling Advice for Prism MVVM
I'm beginning modelling an existing application for controlling a cash collection terminal. I'm very new to the Prism / Composite Application Library and would like some advice on how I could begin ...
3
votes
1answer
387 views
3
votes
3answers
319 views
WPF Binding Render Gui Progress
I know that there are several implementations here and there, but i was still not able to 'lock' on something really useful...
Whenever i set some component DataContext or ItemsSource to some big ...
3
votes
3answers
245 views
3
votes
1answer
198 views
WPF Composite Shape
I have created a somewhat complex shape using basic shapes. I would like to use multiples of this on a canvas, created programmatically in code behind.
I have thought about creating a UserControl, ...
3
votes
1answer
556 views
Prism 2.1: Accessing the IOC Container from App.xaml?
I am creating a Prism 2.1 app in which I have implemented logging, using Log4Net in a custom logger derived from ILoggerFacade. Logging works great; I simply resolve ILoggerFacade against the IOC ...
3
votes
4answers
2k views
Best logging approach for composite app?
I am creating a Composite WPF (Prism) app with several different projects (Shell, modules, and so on). I am getting ready to implement logging, using Log4Net. It seems there are two ways to set up the ...
3
votes
1answer
777 views
CompositeWPF: EventAggregator - when to use?
I've been looking in to the Composite Application Library, and it's great, but I'm having trouble deciding when to use the EventAggregator... or rather - when NOT to use it.
Looking at the ...
3
votes
2answers
7k views
Module Loading with ModuleManager in Prism
This question was also posted on Prism's site on Codeplex.
I am a little lost on loading modules on demand, and I hope you guys can enlighten me. I am using v2 #7.
Here's what I want to accomplish:
...
3
votes
2answers
2k views
Does CompositeWPF support multiple windows/shells?
I'm looking at using CompositeWPF (http://www.codeplex.com/CompositeWPF) - aka Prism, to build an application I am working on.
The application isn't a traditional LOB application, however it does ...
2
votes
1answer
196 views
How can WPF's ICommand be represented as a simple string to be loosly coupled with the UI?
In the past with windows forms I both used parts of Composite UI Application Block combined with some centralised command handling and security rules to achieve a loosly coupled MVC approach to ...
2
votes
1answer
176 views
Command handling in Composite WPF module without framework
I am doing a module in an application where I need to create a complex UI. I decided to use user controls for the UI because of the complexity.
Because of the composite nature of this, I am facing ...
2
votes
2answers
83 views
Is Prism Primarily for Silverlight?
The majority of the articles/tutorials/blog post I read about Microsoft's Prism Framework center around Silverlight. With the composite model being an interesting model for an existing desktop app ...
2
votes
1answer
2k views
Prism v4/MVVM (Unity/WPF) - Load Modules into the same Region
I'm working in a project where I have declared two sections in the Shell; one of these is used to place a menu whose items will load modules on demand and the another one will be used to load the ...
2
votes
0answers
158 views
Good Example .Net Open Source Solution Using a Composite UI
I'm learning about composite UIs at the moment and I wondered if anyone could recommend a good open source project that utilises a composite UI that I could take a look at?
I've got the Prism ...
2
votes
5answers
386 views
Why would adding an x:Name attribute to a user control cause a compilation error?
I really need some more ideas as to what's causing this, currently it's driving me up the wall.
I have a Xaml user control which contains another user control like this :
<UserControl ...
2
votes
2answers
255 views
Prism, Regions, Magic strings and refactoring : am I missing something here?
To build a composite application view in my application, with different regions, untill now, I've always used content presenter and used DataBinding to set its content.
If I wanted to change its ...
2
votes
1answer
199 views
Detecting application exiting and how to stop when changes are not saved
Using the Composite Application Guidance tools from Microsoft, It seems as if there is no mechanism to allow you to query your modules ViewModels and ask if any of them have unsaved data. This is a ...
2
votes
1answer
650 views
Why can't I bind my Silverlight Button Click to a Prism DelegateCommand
I have a simple test app in Silverlight 3 and Prism where I'm just trying to bind a button Click to a simple command I have created on a view model.
This is a test app just to get commanding working.
...
2
votes
1answer
960 views
Exception: “The assembly used when compiling might be different than that used when loading and the type is missing.”
I am building a Prism app with several modules, one of which (MyModule) contains a user control (MyUserControl) that I created. MyUserControl tests fine, but when I add it to MyModule and run the app, ...
2
votes
5answers
2k views
Differences between WPF Custom Control Library and plain Class Library?
I posted a question a few months ago about sharing resource dictionaries across assemblies. It turns out you can do that using the Component Resource Key markup extension. At the time, I could only ...
2
votes
4answers
801 views
What is the correct way to initialize a model and view in WPF CAL MVVM
I have come accross two ways of initializing Views and ViewModels in WPF CAL MVVM.
1 - Seems to be more popular. Requires you to resolve the ViewModel to automatically resolve the View. The ViewModel ...
2
votes
1answer
235 views
How to sync complex domain objects structure between server and client
Are there any best practices for syncing hierarchical domain objects between client with modular structure (WPF,PRISM,MVVM) and server(WCF service and NHibernate for persistence in DB)?
Already ...
2
votes
1answer
489 views
Event Aggregation…What exactly is going on?
I have often times wondered about it but now that I have encountered a piece of logic that incorporates it, I thought I should go ahead and get some help on deciphering the fundamentals. The problem ...
2
votes
1answer
1k views
How to design prism EventAggregator?
Pattern of pub-sub events is that the
publisher should not know or care if
there are any subscribers out there,
nor should it care what the
subscribers do if they are there (from
Brian ...
2
votes
1answer
487 views
What is the best method to load Views dynamically from a Navigation control in Prism
I've implemented navigation through my application using a Menu control which publish an event using EventAggregator on click of menu item. Something like as shown below,
...
2
votes
1answer
2k views
How to change a WPF control's visibility from ViewModel
I've an WPF application where tried to implement MVVM pattern and Prism 2. I have a Usercontrol which has subscribed to an event fired from another Usercontrol. I would like to toggle visibility of ...
2
votes
1answer
480 views
One resource dictionary for all projects in a solution?
I am working on a WPF solution that has several WPF projects--en EXE and several user control DLLs. I'm building a Composite WPF app, and each of the DLLs are modules.
I have created a resource ...
2
votes
3answers
552 views
Windsor with composite WPF February release (Prism 2)
Has anyone managed to create a windsor bootstrapper for prism2?
Prism 2 seems to rely on Unity's behaviour of injecting types that haven't yet been registered.
Thanks.
2
votes
2answers
583 views
How fine grained should modules in Prism be?
I am currently working on a project of mine using Prism (the Composite Application Library/Guidance). The application will be a specialized MSPaint-like application for basketball (predefined objects ...
2
votes
4answers
4k views
Prism2 Region Adapter for AvalonDock's DocumentPane and DockingPane?
Does anyone have sample code on how to create a Region Adapter for AvalonDock's DocumentPane and DockingPane?
2
votes
4answers
4k views
WPF Application fails on startup with TypeInitializationException
I have a simple WPF application which I am trying to start. I am following the Microsoft Patterns and Practices "Composite Application Guidance for WPF". I've followed their instructions however my ...
1
vote
2answers
51 views
PRISM + Silverlight VB.NET help needed
I have been a VB6 developer for several years, and switched to .NET couple of years ago.
Since then, I switched to WPF, and now, i am attacking Silverlight + PRISM
I whould like to know if anyone of ...
1
vote
2answers
120 views
Prism modules and WCF Service References in a Prism Desktop Application
I am making a Prism desktop application and intend to use WCF services to populate list boxes etc within views within my modules.
I have read the guide from cover to cover and have set up my solution ...
1
vote
1answer
28 views
Is it possible to host views from mulitple threads in same region
Is it possible to create views on different threads and add them to a region on the main ui thread?
I have got as far as I can but I am blocked by Prism trying to set the RegionManager attached ...
1
vote
2answers
170 views
Navigate from one view to another in WPF
I want to navigate from one view to another view in WPF using MVVM. How can I do this? Please let me know the procedure.
Thanks,
Prashant
1
vote
1answer
261 views
Prism newbie - Registering commands/events with Menus or toolbars in the shell
I am creating a Prism 4 application and would like to have have each of the modules provide a set of commands/events that it can handle. I would like to register these events with the shell so that ...
1
vote
3answers
256 views
Prism - what if multiple modules register the same service
I am currently playing around with and reading up on Prism. I know that the suggested way is to have some common "services" that are defined as interfaces in the Infrastructure assembly that all ...