Tagged Questions

Overview Prism provides guidance designed to help you more easily design and build rich, flexible, and easy-to-maintain Windows Presentation Foundation (WPF) desktop applications, Silverlight Rich Internet Applications (RIAs), and Windows Phone 7 applications. Using design patterns that embody ...

learn more… | top users | synonyms

22
votes
4answers
4k views

Prism v4: Unity or MEF?

I downloaded Prism v4 and ran the installer. I went into the directory and ran the two following batch files: Desktop only - Open Modularity With Mef QuickStart.bat Desktop only - Open Modularity ...
6
votes
2answers
1k views

PRISM + MEF + MVVM — Not sure where to really start?

What I'm using: Visual Studio 2010 Microsoft .NET Framework 4 Prism v4 What I am trying to figure out is how to get started with Prism + MEF while maintaining the MVVM pattern. When I go into the ...
5
votes
1answer
44 views

Debugger doesn't hit Module at all if I insert a breakpoint nothing is hit and giving me an error

I am facing problem ( Important to notice that the debugger doesn't hit CivicaHousingRepairsModule at all .... If I insert a breakpoint in the first line ... nothing is hit.) since last 2 days ...
5
votes
1answer
109 views

Sharing styles between modules in Silverlight applications based on Prism 4

I need to use the styles in serveral modules in Silverlight application based on Prism 4. What is the best approach for this? Thanks..
5
votes
1answer
180 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, ...
4
votes
2answers
112 views

Is it possible to write Prism apps such that they can be tested without the UI?

Disclaimer: Prism Novice. I'm reading up furiously to make up for lost time though :) Context: I need to write automated acceptance tests for a WPF application built using Prism. Issues: I find that ...
4
votes
3answers
197 views

WPF Prism - What is the point of using Prism Regions?

I'm just wondering what the point of regions are. I guess I don't understand the problem they solve. For example, I see a lot of people using regions for a navigation region, but then why not just ...
4
votes
1answer
2k 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 ...
3
votes
1answer
65 views

How to use WCF RIA Services in PRISM 4?

I am developing Silverlight application with Prism 4 and WCF RIA service. I had searched on google to get sample explaining this, but failed to get any successful output. I am confuse about how to ...
3
votes
1answer
34 views

How to start Learn Prism for Silverlight? [closed]

Possible Duplicate: How to Learn Prism for Silverlight Fast? I want to learn and implement PRISM in My new application. Please suggests any link which is good for how to start with prism ...
3
votes
1answer
114 views

Graceful application shutdown using WPF PRISM 4

I'm looking for a "best practice" (if there is even a best) for cleanly shutting an WPF application down that uses MEF and PRISM4. Ultimately, I'm looking for some sort of "Close Service" would ...
3
votes
2answers
190 views

Which is better to be used along with Prism4, Unity or MEF as a Dependency Injection Container?

I am working on a large billing application for one the Telecom companies using WPF4, the application contains more than 300 screen, and it will contain more than 17 modules, that is why I choose to ...
3
votes
1answer
171 views

Whats the status of Prism integration in Autofac?

Integration into Prism was talked about in the 2.1.x time frame, we are @ 2.4.x, Prism 4 is out now and the RIStockTrader Example in /contrib is just a default XAML project. Should it work? If so, ...
3
votes
2answers
1k views

How do I bind a TabControl to a collection of ViewModels?

Basically I have in my MainViewModel.cs: ObservableCollection<TabItem> MyTabs { get; private set; } However, I need to somehow be able to not only create the tabs, but have the tabs content ...
3
votes
2answers
1k views

Prism, ServiceLocator and Unity container hierarchy and multi-window WPF application

I want to build a WPF/Prism application where each top level window is in its own UI thread. That is fairly straight forward to do. I am using Unity as my DI container and would like to create a ...
3
votes
2answers
623 views

MVVM framework AND Prism 4?

I just read this question. It has some nice answers, but they are over 1 year old, and a lot have changed in this space over the last year. Some of the most popular frameworks have come out in a new ...
2
votes
1answer
17 views

Error in Binding Custom Textbox Property

I have created custom Textbox in Silverlight 4, MVVM and PRISM 4. The custom text box has dynamic behavior link it dynamically set TextMode to either Password or Text. This is working perfect. ( if i ...
2
votes
1answer
74 views

login design in prism 4.0

this question might sound silly. I want to do login page by editing the template in VS2010 with Prism 4.0 as the template. as a login page, it will have 2 textbox, one is username and another one is ...
2
votes
2answers
280 views

Prism / MEF: How to RegisterViewWithRegion Without Hard-Coding the Region Name

We are building a WPF Prism application. We have different developers working on different module projects, and multiple modules are injected into the main Application Shell. The main application is ...
2
votes
2answers
96 views

Breaking the .NET MEF import chain

For this example you can assume toplevel is importing ClassA. MEF seems to work great as long as you import everything (ie ClassX). Often you don't need to import because classB is in same ...
2
votes
1answer
188 views

Access ViewModel / DataConext inside ContextMenu

How can I get the original DataContext of the UserControl inside of a ContextMenu. The code below, you can see that there is a Button in the DataTemplate, which binds correctly. However, when trying ...
2
votes
0answers
104 views

Silverlight OOB updates when using MEF / PRISM

I am working on a prototype for Silverlight OOB application. To modularize the application either PRISM or MEF or both will be used. When a new version of the application is available, ...
2
votes
3answers
438 views

Should I use Prism for developing simple desktop applications? C#

I want to move on to WPF applications and convert my win-form apps(into WPF) At the moment there is too much to learn about WPF in order to get nice application... I found Prism : ...
2
votes
2answers
1k views

Prism 4: Unloading view from Region?

How do I unload a view from a Prism Region? I am writing a WPF Prism app with a Ribbon control in the Shell. The Ribbon's Home tab contains a region, RibbonHomeTabRegion, into which one of my modules ...
2
votes
1answer
1k views

ViewModel is not initialized on View Injection (WPF PRISM 4 MVVM)

I'm using PRISM4 MVVM Pattern, and the views are loaded successfully and displayed on the appropriate regions when the application starts. When the application starts, the ViewModels are initialized ...
2
votes
1answer
150 views

Upgrade CAB and Prism 2 to Prism 4

We have several CAB and prism 2 applications which we plan to migrate to Prism 4. Has anyone any experiance with migration of CAB and/or Prism 2 applications to Prism 4? Are there any "gotchas" ...
2
votes
5answers
1k views

PRISM + MEF — Can't get regions to work properly

a bit new to Prismv4 and MEF. I went through the QuickStarts and tried to combine two of them together, but I can't seem to get it working. First, I got a Bootstrapper to load the Shell Window. ...
2
votes
2answers
84 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 ...
1
vote
0answers
33 views

How to limit prism 4 to load only special signed modules?

I have a WPF Desktop application using Prism 4, in my bootstrapper i have the following code : protected override IModuleCatalog CreateModuleCatalog() { var filepath = ...
1
vote
2answers
62 views

How to Learn Prism for Silverlight Fast?

I need to make Silverlight application With Prism. What could be best way to learn to make simple application with Silverlight + Prism? Also suggest any Good books for same. Thanks.
1
vote
0answers
44 views

PRISM View Injection - IRegion.Activate does not display view

I have a simple demo application which loads two modules (ModuleA and ModuleB). In each module initialization I use view discovery approach to display corresponding view. All modules are loaded ...
1
vote
1answer
63 views

How could I know if all my modules are loaded in prism 4?

I have a WPF Desktop application using PRISM, there are 12 modules which do not depend on each other , every time i start the shell, modules are been loaded , the point is that I would like to know ...
1
vote
1answer
161 views

Prism v.4 and System.Windows.Interactivity dependency

For applications using Prism v. 4.0.0.0 I have a issue when creating a installer. The installer package registers the Microsoft.Pratices.Prism.Interactivity.dll as having System.Windows.Interactivity ...
1
vote
1answer
86 views

Composite view - View already exists in region error

I am working on a WPF/Prism 4/AvalonDoc application. One of my views is very complicated and a ViewModel become huge and unmanagable. So I decided to split it to smaller views with their own ...
1
vote
2answers
111 views

Getting a new Shell instance from CompositionContainer in Prism 4 with MEF

I'm coming across some strange MEF behaviour in Prism, which I can't really explain. I've found a way around it that I'm not too happy with, so I'd really like to understand what's causing it. I've ...
1
vote
1answer
80 views

PRISM Region loses Context during navigation

I created an application using PRISM and it's navigation features. There is main region in this app which Context contains current logged user. In this region I dynamically load views using ...
1
vote
0answers
84 views

Example of using Prism 4 for Windows Phone 7

Is there a simple example of using the Prism 4 MVVM framework for Windows Phone 7? And the tests have written, and documentation -- but most important - EXAMPLES are absent. P.S. What are they ...
1
vote
0answers
67 views

Prism 4 + Mef + public partial class App = Bag?

I'm trying to implement the interface IPartImportsSatisfiedNotification but unfortunately it does not work. This bug I have only the prism. I can't understand why this is happening. Test Application ...
1
vote
1answer
183 views

Could not load file or assembly 'System.Windows.Controls' in silverlight 5 using prism4

I'm creating an application silverlight 5 using prism 4 and when I'm running the bootstrapper using UnityBootstrapper then I have the next error: Could not load file or assembly ...
1
vote
2answers
334 views

Prism RequestNavigate - Can I take implement my own view resolution service?

I’m fairly new to prism, and I’m currently re-writing one of our existing applications using prism as a proof of concept project. The application uses MVVM with a ViewModel first approach: Our ...
1
vote
2answers
111 views

Prism: Share ViewModel's property in parent ViewModel

I'm developing WPF Prism application using Unity container. The issue is: I have a ListBox, each element has it's own ViewModel. In that element I need to select a location from a list of locations. ...
1
vote
2answers
93 views

Overall application architecture with PRISM application

I am building a WPF application and plan on using the PRISM pattern library. Almost all of my views will either display or modify a list. Where should I place this object and how should I feed it to ...
1
vote
2answers
90 views

Using UnityEventAggregator only from Prism

I am trying to use the Unity event aggregator to do messaging between various parts of an application. Currently, this is the only feature of the Prism framework that I would like to use. I am ...
1
vote
1answer
124 views

How can I pass parameters from Shell to Modules through constructors in Silverlight project which using Prism 4.0 for integration

I have a main Silverlight Shell project, which calls several Silverlight Module projects. I need to pass parameters to my module projects through constructors. Can anybody help me to solve this?
1
vote
1answer
226 views

.NET Prism4 WVVM + WPF Asynchronous Calls Best Practices

I am currently getting started with the .NET Prism framework to develop a WPF application. One thing that I'm unable to determine is the best way to achieve asynchronous calls to a WCF service, or a ...
1
vote
1answer
95 views

Beginning in Prism

I'm totally new in Prism (Composite Wpf). I want to create messaging module for my application: invisible panel on the top of the main window which appears when I invoke ShowMessage(string message) ...
1
vote
1answer
415 views

Should I Call RaiseCanExecuteChanged in Prism' DelegateCommand?

I have written a CanExecute method for the DelegateCommand. CanExecute is not being re-evaluated as other commands which inherites from a CommandBase, that looks like this. public abstract class ...
1
vote
1answer
203 views

How to use PRISM within C# windows service applications?

I'm trying to create an windows service application which i would be able to add modules in it as we do in WPF and Silverlight. This is how i went throw : public static class Program { public ...
1
vote
3answers
186 views

PRISM 4 for WPF and Silverlight

I am new to the WPF and Silverlight and Prism 4 , Can we create an Application that is usable both in WPF and silverlight or do I have to have different projects for both? My question is Can I use ...
1
vote
1answer
134 views

Whats the right way to impliment a login view using prism 4

I am trying to create a login control, pretty simple stuff...just using a usercontrol with a couple of labels, textboxes and buttons. My problem here is im using prism and i dont know the right way ...

1 2 3