Prism is Microsoft's Composite Application Guidance for WPF and Silverlight

learn more… | top users | synonyms (1)

41
votes
1answer
7k 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 ...
20
votes
1answer
8k 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 ...
19
votes
10answers
17k 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 ...
18
votes
8answers
20k 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 ...
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?
15
votes
2answers
6k 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 ...
14
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. ...
13
votes
4answers
9k 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 ...
13
votes
4answers
11k 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 ...
13
votes
3answers
1k 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 ...
12
votes
3answers
9k 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 ...
12
votes
3answers
2k 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 ...
12
votes
3answers
3k 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 ...
12
votes
2answers
3k 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 ...
11
votes
4answers
8k 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 ...
11
votes
3answers
5k 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 ...
11
votes
1answer
5k views

Prism 4: RequestNavigate() not working

I am building a demo app to learn the navigation features of Prism 4. The app has two modules--each one has three Views: A UserControl with a text block ("Welcome to Module A") A RibbonTab (using a ...
11
votes
3answers
3k 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 ...
11
votes
1answer
3k 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 ...
11
votes
2answers
3k 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 ...
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 ...
11
votes
4answers
6k 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 ...
11
votes
4answers
945 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 ...
11
votes
5answers
702 views

WPF Application Errors and .Net Framework Repairs

Background: I have a .Net 3.5 WPF "Prism"-based application running on Windows XP and Windows PosReady 2009 PCs. The app runs on PCs that are shut down every night (via a C# call to "shutdown.exe") ...
10
votes
3answers
6k views

WPF/Prism: What is a UNITY Container?

Can someone please explain to me the notion of a Unity Container like I'm a 6 year old kid? How does it work and what does it do?
10
votes
2answers
3k 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
3answers
8k views

MEF: a replacement for PRISM?

To what extent, if any, is MEF a replacement for PRISM?
9
votes
3answers
5k 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
1answer
4k views

Alternatives to Prism + MEF for modular MVVM apps [closed]

My team and I are beginning to plan the development of a modular application which will likely multi-target WPF & Silverlight. I personally have some experience using the older version of PRISM ...
9
votes
4answers
3k 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 ...
9
votes
3answers
627 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 ...
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
2answers
5k 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 ...
9
votes
1answer
539 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 ...
9
votes
2answers
2k 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 : ...
8
votes
7answers
2k 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 ...
8
votes
4answers
7k 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 ...
8
votes
2answers
2k views

EventAggregator vs CompositeCommand

I worked my way through the Prism guidance and think I got a grasp of most of their communication vehicles. Commanding is very straightforward, so it is clear that the DelegateCommand will be used ...
8
votes
3answers
2k 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 ...
8
votes
3answers
1k 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 ...
8
votes
1answer
3k views

Prism: Share data between ViewModels loaded into a region?

I've got a View containing a TabControl bound to a region "CustomerRegion". I've got a few View/ViewModels which are marked as [ViewExport(RegionName = "CustomerRegion")]. These items are loaded ...
8
votes
1answer
590 views

Framework similar to Prism for Knockout js

Microsoft made Prism framework for Silverlight and WPF. It looks great with its RegionManager and other stuff. Is there any similar framework for Knockout? Thanks.
8
votes
2answers
1k 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 ...
7
votes
3answers
5k 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
9k 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 ...
7
votes
2answers
391 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
7k views

MDI Applications in WPF

I am working on a new .Net WPF project and will most likely be using the PRISM framework. One of the requirements that I have for the application is to have an MDI type user interface. I need a main ...
7
votes
3answers
5k 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
2answers
4k views

How to dynamically add MenuItems (with a header) to a WPF menu

[Edit #3] - to anyone reading this question: do not under any circumstance use the approach outlined in this question. It is a Coding Horror. I freely admit this, knowing that all programmers have ...
7
votes
2answers
488 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 ...

1 2 3 4 5 33