Tagged Questions

This tag is generally for use in regards to the Composite Application Guidance for WPF and Silverlight

learn more… | top users | synonyms

34
votes
1answer
6k views

WPF/Silverlight - Prism - Resources for beginners

Official Websites Composite Application Guidance for WPF and Silverlight patterns & practices: Composite WPF and Silverlight Articles Composite Web Apps With Prism Podcasts PRISM for ...
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?
13
votes
8answers
11k views

Sync SelectedItems in a muliselect listbox with a collection in ViewModel

I have a multi-select listbox in a SL3 app using prism and I need a collection in my viewmodel that contains the currently selected items in the listbox. The viewmodel doesn't know anything about the ...
12
votes
2answers
2k views

PRISM and WCF - Do they play nice?

Ok, this is a more general "ugly critters in the corner" question. I am planning to start a project on WCF and PRISM. I have been playing around with PRISM some time know, and must say, I like it. ...
11
votes
3answers
558 views

Methods for composing configuration for composite applications (eg PRISM, MEF)

Frameworks such as PRISM and MEF make it very easy to design complex applications out of multiple, composable components. One common example of this is a plug-in architecture where an application ...
11
votes
1answer
2k views

MVVM Light + Unity or Prism?

I am a little out-of-date in WPF right now and would be interested to hear peoples opinions on the latest version of Prism (which I used a couple of versions ago) vs an MVVM Light + Unity approach ...
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
3answers
408 views

WPF: Is Prism overkill for small apps?

If I don't split my app into different modules (otherwise I would argue that Prism would defo be the way to go) should I use Prism? I know that Prism gives a convenient implementation of ICommand ...
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 ...
9
votes
5answers
1k views

Silverlight MVVM Where to start

My company is making a big push to silverlight and I am getting everything laid out for this push. I am investigating Prism and MVVM in Silverlight. Is this the best way to go. Anyone know any good ...
9
votes
4answers
5k views

MEF vs. PRISM. What is the difference? What will be supported in the future?

I have read similiar posts but I it not clear to me. What I want to create is a Silverlight apps with a few tabs/modules that will all be seperate DLLs. I see PRISM has the Shell/Module concepts ...
9
votes
2answers
3k views

How do I associate a keypress with a DelegateCommand in Composite WPF?

I am building a composite application using CAL/Prism. The main region is a tab control, with multiple types of views in it. Each view has a custom set commands that it can handle which are bound to ...
9
votes
3answers
7k views

MEF: a replacement for PRISM?

To what extent, if any, is MEF a replacement for PRISM?
9
votes
4answers
8k views

What does this mean in Prism/Unity: Container.Resolve<ShellPresenter>()

(from the StockTraderRIBootstrapper.cs file in the Prism V2 StockTrader example app) What is the difference between this: ShellPresenter presenter = new ShellPresenter(); and this: ShellPresenter ...
8
votes
1answer
202 views

MVVM: Decouple Model from ViewModel

I've just started learning WPF MVVM using Prism and Unity. Decoupling the view from the viewmodel works pretty well, but I don't get how wire up my viewmodel and my model. I doesn't feel right to just ...
8
votes
4answers
509 views

Custom MVVM implementation Vs. PRISM

This question is inspired from this closed question - What does Prism actually offer the developer? And is it worth it? I have already implemented my own custom MVVM implementations in enterprise ...
8
votes
4answers
4k views

Prism/MVVM (MEF/WPF): Exposing navigation [Menu's for example] from modules

I am starting my first foray into the world of Prism v4/MVVM with MEF & WPF. I have sucessfully built a shell and, using MEF, I am able to discover and initialise modules. I am however unsure as ...
8
votes
2answers
1k views

New Prism Project - Use MEF or Unity?

I'm starting a new personal Prism 4 project. The Reference Implementation currently uses Unity. I'd like to know if I should use MEF instead, or just keep to Unity. I know a few discussions have ...
8
votes
7answers
12k views

WPF MVVM dialog example

Does anyone have any examples of showing a window dialog using MVVM (Prism)? - for example a configuration settings window when a command is executed. All of the examples I've seen use the mediator ...
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 ...
7
votes
4answers
115 views

Problems understanding use of MVVM when using WCF DTO's in a WPF smart client app

Having very little experience in the area I am writing a WPF smart client app communicating to a WCF backend using MVVM and am really struggling to make the right decisions out of all the information ...
7
votes
2answers
148 views

Should a View bind indirectly to properties in a Model in MVVM?

Let's say I've got a View. It's DataContext is bound to a ViewModel and the ViewModel exposes a Model property. Is it MVVMlike to bind fields in the View to properties in the Model (e.g. Binding ...
7
votes
2answers
299 views

How to get the current active view in a rigion using PRISM?

I know that i can get all the registered views in a region with : var vs = mRegionManager.Regions[RegionNames.MainRegionStatic].Views.ToList(); and i can see there is the following code : ...
7
votes
3answers
567 views

PRISM + MEF — How to specify which export to use?

Basically, how can I specify which of my implementations to choose from? FooService.cs: public interface IFooService { Int32 GetFoo(); } [Export(typeof(IFooService))] public sealed class Foo100 ...
7
votes
1answer
2k views

Choosing Between Prism and Caliburn

I have been using Prism 2.0 for a personal project for a few months now. I have recently heard of Caliburn and am wondering if there are compelling reasons for me to consider that instead. I like ...
7
votes
7answers
1k views

What is your experience with abandoning MVVM for UserControl-based WPF architecture?

We built an large application based on Composite Application Library and MVVM using Infragistics controls. In order to save time and make the application more straight-forward, we scrapped the MVVM ...
7
votes
3answers
4k views

Hotkey commands for Silverlight in MVVM?

I'm trying to fire commands based on keystrokes in Silverlight. As I understand you cannot use AccessKey or AcceleratorKey in Silverlight. Also it looks like the might be helpful attached property ...
7
votes
3answers
4k views

In Prism (Composite Application Guidelines), how can I get views dynamically loaded into TabControl?

In a Prism v2 application, I define two regions, each a tabitem in a tabcontrol: <UniformGrid Margin="10"> <TabControl> <TabItem Header="First" Name="MainRegion" ...
7
votes
3answers
2k views

Resolving classes without registering them using Castle Windsor

Take the following useless program: class Program { static void Main(string[] args) { IUnityContainer unityContainer = new UnityContainer(); IWindsorContainer windsorContainer ...
6
votes
2answers
184 views

C# deserialization of System.Type throws for a type from a loaded assembly

I have an application a.exe which is running fine and has loaded an assembly b.dll, which is a Prism module if that matters. This dll is loaded from a directory that is not in the path but is in the ...
6
votes
3answers
192 views

Efficient communication between two .Net applications

I am currently writing a .Net application in c#, which has two main components: DataGenerator -a component generating a lot of data Viewer - a WPF application that is able to visualize the data that ...
6
votes
2answers
287 views

What is Prism for WPF?

I've come across something called Prism a lot recently. Microsoft, who run the project, describe it as "guidelines for composite applications in WPF and Silverlight". Even after reading the more ...
6
votes
2answers
270 views

Approach for a multi-lingual WPF application

it seems there are a number of approaches on how to implement multiple languages in a WPF application. But I would like some more information about what method I should be using with the following ...
6
votes
2answers
657 views

How to dynamically discover all XAML files in all modules in a Silverlight prism app

Is there an easy way to dynamically discover all the XAMLs files within all the currently loaded modules (specifically of a Silverlight Prism application)? I am sure this is possible, but not sure ...
6
votes
2answers
657 views

Using Prism with Ninject

Is anyone out there using the Prism framework with Ninject instead of Unity? I need some functionality Unity isn't supporting yet, and I've decided to switch the IoC container to Ninject. I'm ...
6
votes
4answers
5k views

WPF-Prism CanExecute method not being called

I am coding a simple login UserControl with two TextBoxes (Username and Password) and a Login button. I want the Login button to be enabled only when the username and password fields are filled in. I ...
6
votes
2answers
859 views

How to implement CRUD Master Details on the same screen under MVVM

I have a MVVM (Prism) application that I need to implement a master details screen wheer the master is a listview and the details is displayed next to it. Read-only seems easy enough (haven't done it ...
6
votes
2answers
3k views

What's the best way to avoid memory leaks in WPF PRISM/MVVM application

I have a WPF application based on PRISM that utilizes the MVVM pattern. I have noticed that occasionally my view models, views and everything connected to them will hang around long after their ...
6
votes
5answers
709 views

Is Silverlight appropriate for a big LOB application

So I'm at the proof of concept stage for a fairly large LOB application. The application will be deployed to many desktops (200+) in many organisations. It will contain lots of CRUD type screens ...
6
votes
4answers
3k views

Creating objects using Unity Resolve with extra parameters

I'm using Prism, which gives be the nice Unity IoC container too. I'm new to the concept, so I haven't gotten my hands all around it yet. What I want to do now is to create an object using the IoC ...
6
votes
6answers
3k views

How to control the order of module initialization in Prism

I'm using Prism V2 with a DirectoryModuleCatalog and I need the modules to be initialized in a certain order. The desired order is specified with an attribute on each IModule implementation. This is ...
6
votes
1answer
3k 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 ...
6
votes
4answers
1k views

Why Use Prism?

I am interested in making a decent WPF application which will be pretty huge. Someone suggested using PRISM which we are currently looking into. We might be using the MVVM pattern to implement this ...
6
votes
3answers
7k views

WPF, Prism v2, Region in a modal dialog, add region in code behind

I have a composite WPF application. In one of my modules I want to make a wizard and have the steps show up in a region so I can switch between the steps easier. Originally I had this wizard showing ...
5
votes
1answer
116 views

Is Prism still being actively developed?

I've been to the codeplex site and I see members and a few bug reports, but I can't tell if there is new development going on or if it is just in cruise mode. Anyone have any further details? Edit ...
5
votes
1answer
175 views

Prism composite application - Blendability

We are using Prism and is an excellent framework for composition and modularity. However, I haven't seen a good story around Blendability with Prism composition. When you have a code that has Regions, ...
5
votes
1answer
279 views

What does Prism actually offer the developer? And is it worth it? [closed]

In simple, practical terms, what does Prism offer, and is it worth it? My experience of MS's application development frameworks - Enterprise Library for example - is that they're generally overly ...
5
votes
3answers
212 views

WPF UI crashes only when debugging

If I go to Debug -> Start Without Debugging my WPF app runs fine, but if I go to Debug -> Start Debugging then the UI will disappear and this will be in the Output window under Debug: The program ...

1 2 3 4 5 20