Prism, formerly known as "Composite Application Guidance", 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 ...
-2
votes
0answers
38 views
Global Listener in C# WPF [closed]
Hope this question might be silly but I don't know the answer for it. I like to know is there is a way which we can get a Notification (Event Raised) whenever an action is performed in WPF C# ...
0
votes
0answers
16 views
TabControl with Regions PRISM
I am Creating a Shell.XAML which houses only a Tabcontrol..
I am trying to create new tabs on a button click event.... With the code that i have written till now I am able to create new tabs on a ...
0
votes
0answers
40 views
exception Region with the given name is already registered
in my prism application i have one region(root region) and two view(view1,view2) for that that have sumRegion(view1 have subRegion1 and view2 have subRegion2)
when i load view1 at application ...
0
votes
0answers
23 views
AvalonDock 2 / Prism 4 : how to handle close event of Document pane tabs?
I want to handle close event of document tab in order to remove the closed view from the prism region. How could i do that?
1
vote
1answer
16 views
navigation in not working when [PartCreationPolicy(CreationPolicy.Shared)] in prism
In my prism application I want to make a single shared instance of a view. When I try to navigate the first time it works fine, but when I try to second time it's not working. If I change the ...
0
votes
2answers
52 views
How do I create multiple shells in WPF application
I'm trying to create an application that includes two shells:
Login shell
Public shell
I success to create two shells at the same time using PRISM and MEF, but how I can first to make the login ...
0
votes
0answers
52 views
Update a cell of a column on updating another cell of the same column in XamDatagrid
I have a requirement of updating a cell of a column on updating another cell of the same column in XamDataGrid.
Iam trying to implement this using WPF,MVVM. Could anyone please help me out? Data in ...
1
vote
0answers
22 views
Getting RhinoServiceBus to play nicely with PRISM/Unity
I just spent the last 48 hours trying to make the above happen and while I think Rhino Service Bus is fabulously useful their documentation leaves a lot to be desired. Having solved the problem I was ...
1
vote
2answers
90 views
Binding of a button click command in c#
I have a following piece of XAML which binds a button click using prism. Can someone guide how can I achieve the same behavior in code behind since I need to create the button dynamically? Thanks.
...
0
votes
1answer
56 views
how to store global value and get in wpf Prism
in my application i had done log-in in WPF using prism after log-in i have to store some value (like user_id,username etc) that can be accessible in to may module so how can i resolve that problem ...
0
votes
1answer
35 views
How do I implement the logic to navigate once the service result is returned
In a bootstrapper, I have two views. Using the IRegionManager, I navigate between the first and the second view.
The first view contains a search box. The user types a string, clicks search. The ...
0
votes
0answers
20 views
Fullscreen display of a view on the whole screen from a module using PRISM WPF
I am currently working on a WPF application where i am leveraging PRISM library for modularity. My shell has three regions - Navigation region on the left, Main or Content region in the middle and a ...
0
votes
0answers
18 views
Prism nested regions - how to cleanup child view when navigating away from top-level view?
In my application I navigate to a view (call it "parentview") within my main window's region. "parentview" has a region of its own, and during its OnNavigatedTo event I navigate to a view (call it ...
0
votes
0answers
21 views
Navigating to a sub region on NavigatedTo?
I'm using Prism in a wpf 4.5 app. On my main page, I have a region 'mainRegion' that can contain either ViewA or ViewB. When the app starts, I request to nav ViewA to mainRegion. All good. Then I ...
0
votes
0answers
12 views
Setting HasCloseButton when using Prism InteractionRequest
I'm using the
Interaction<Notification>
from Prism 4 to display a notification message. Is there some way to hide the close icon (the cross at the top right of the popup window)? In ...
0
votes
0answers
46 views
WPF Tab-Like control
I am trying to build a WPF application using PRISM and am struggling with how best to tackle the menu UI that I want. The menu will have a selection of menu items added (view a PRISM region). Every ...
0
votes
0answers
183 views
Communication between multiple view-models using MVVM & Prism 4.0
I am trying to identify the best appraoch for multiple view-models communication mechanism (eg: View-Model A & View Model B are loosely coupled one. Now I want to pass one value to my View Model B ...
0
votes
1answer
77 views
Wpf PRISM disposable module
I'm having a WPF application that is divided into PRISM modules.
I have a service that deals with some unmanaged resources, therefore it implements the IDisposable interface:
public class ...
0
votes
0answers
43 views
Is there any way to set validation error even after UpdateSourceExceptionFilter is fired from custom binding
I am using custom binding for checking the exceptions like unexpected value is entered in decimal field.Also I am using UpdateSourceTrigger=Explicit.
I am handling the lost focus event,and on that ...
0
votes
0answers
26 views
No Regions are defined when using Prism/Unity and Burn
I am working on a custom Burn bootstrapper and wanted to use Prism as the UI framework. I was seemingly able to get the Prism Unity boostrapper to be invoked by the Burn boostrapper and I get my main ...
0
votes
1answer
27 views
What event can I hook into upon RequestNavigate to userControl?
I have a view in a WPF application I'm writing using PRISM & Unity for IOC/DI. Upon the entering of details in a client view I save details to database then call my regionManagers' requestNavigate ...
1
vote
1answer
106 views
Designing a “busy” dialog using InteractionRequests
I'm currently using Prism's InteractionRequest to display new windows. I use them for simple confirmations as well as displaying a window window with a custom view/viewmodel, following the sample ...
2
votes
2answers
82 views
Viewinjection with unity failing
I have trouble getting navigation working using Prism 4.
I've set up a test solution in which I have a shell with a region called MainRegion:
<Window x:Class="PrismNavigationTest.ShellView"
...
0
votes
0answers
31 views
Shared view not showed while navigating
I've a shared view SharedView that is hosted inside two views View1 and View2.
When I run the app and open any of the view the SharedView is rendered as expected but if I open, for example, View1 and ...
1
vote
1answer
174 views
Why to use ServiceLocator when MEF is Present?
I have been pondering on a question after i started studying Prism... why do we need to use a Service locator if we have MEF to satisfy all the imports required.
Common Service Locator link for MEF
...
1
vote
1answer
128 views
WPF IDataErrorInfo issues
I've used WPF and IDataErrorInfo in the past apps to display errors to the user via a controltemplate by putting an image in the adorner and adding a tooltip to the image like this;
<Style ...
0
votes
2answers
209 views
WPF PRISM/Unity viewModel parameter
I have a view and corresponding view model for adding or editing a customer.
If I click the Add new customer button, unity wires me up a nice shiny new CustomerView and passes in my datacontext and ...
0
votes
2answers
180 views
WPF, moving XAML files to another project
I just moved a couple of WPF User controls from one project to another and now I get all these errors when I compile, the same namespaces are said to be missing from all the user controls CodeDom, ...
0
votes
0answers
51 views
Silverlight prism module view in modules
My project is a silverlight project and using Prism
I have created a main shell application and two module named ModuleA and ModuleB.
ModuleA view is including menu that has X,Y,Z menu items.
I ...
1
vote
1answer
369 views
How to Integrate Prism, Unity, and Enterprise Library
I'm building a WPF application. I'm using Prism 4, and Unity. I want to add two Enterprise Library 5 blocks to the application, Logging and Exception Handling. I have a singleton LoggerFacadeCustom.cs ...
0
votes
0answers
47 views
Assembly name build number mismatch
I'm building a WPF application. I'm using Prism 4, and Unity. I want to add two Enterprise Library 5 blocks to the application, Logging and Exception Handling. I have a singleton LoggerFacadeCustom.cs ...
0
votes
0answers
127 views
How to access parent usercontrol's datacontext.property in injected usercontrol using prism WPF
Hi I am working with WPF PRISM architecture.
I have two usercontrols:
UCParent--UCParentVM
UCChild -- UCChildVM
Both have their own viewmodels.
Now that I have injected UCChild into UCParent. But I ...
0
votes
2answers
117 views
Region or ItemsSource for large data set in ListBox
I'm having trouble figuring out what the best solution is given the following situation. I'm using Prism 4.1, MEF, and .Net 4.0.
I have an object Project that could have a large number (~1000) of ...
0
votes
2answers
429 views
PRISM 4 + MVVM + WPF + InteractionRequest for Dialogs with details
I am currently working on a project that is using PRISM 4 + MVVM in a WPF 4 application. I have been reading up on InteractionRequest and there seems to be little information on how to implement it ...
0
votes
0answers
143 views
Module Dependency for Directory Catalog - Microsoft PRISM
I am using DirectoryModuleCalatog to load the modules.
What I am trying to implement is all the modules needs to be dependent on some specific module. For example, I have one MainModule and several ...
0
votes
0answers
100 views
What's correct way of using data annotation using validation block in silverlight and how to disable validation for particular attribute in Model
I have an application designed in silverlight 5, Prism-4, Ria services, entity framework having validation block(enterprise library). My requirement is I have model which has int BatchId, string ...
1
vote
3answers
192 views
How to create new instance of a view/viewmodel when navigation occurs with Prism
I am trying to control when a new view is created and when an existing view is shown.
This is a very similar scenario as outlined in the "Navigating to Existing Views" section in the Prism ...
0
votes
2answers
404 views
How can I attach a command behaviour to a TextBox in a ListView?
I am working with the sample code for the stock trader reference implementation.
http://prism4.googlecode.com/svn/trunk/Prism4/
There is a list of stocks in PositionSummaryView.xaml. In the list of ...
2
votes
1answer
138 views
Common way to change users at runtime and their permissions in WPF/Prism desktop application
I have troubles with WPF desktop application based on Microsoft Prism Framework. The application has Logon dialog on startup that creates AuthenticationContext (User and Role) and runs Prism ...
0
votes
1answer
97 views
Loading modules, security and product keys
I'm working on a modular application in .NET using Unity and Prism V4. An advantage to having a modular design is the ability to easily add and remove features. It is a requirement that I am able to ...
0
votes
0answers
113 views
Dynamically adding view in TabControl Prism based on userinput in Firsttab
I have a prism silverlight application using MEF.
In this application I have View1,View2,View3 & they have relevant viewModels. View has reference of IViewModel which is parent of all viewModel. ...
2
votes
2answers
71 views
Event or command to know everytime an item is selected from Checkedlistbox using mvvm,wpf
Iam using MVVM with WPF...I have a checkedlistbox with some items....everytime one item is checked, I want that item to be used in Viewmodel....Is there a property or command or event so that I can ...
1
vote
1answer
233 views
Prism Modules having its own Regions in View
i'm practicing in Prism V4.1 with Silverlight 5 (MefBootstrapper). Unfortunately I can't find implementation of situation like this:
I have 2 Regions in my Shell.xaml.
My modules(xap files described ...
0
votes
1answer
438 views
How do you create ModuleCatalog from Xaml?
I'm using Unity for my IoC container and in my bootstrapper I have this code:
protected override IModuleCatalog CreateModuleCatalog()
{
return ...
1
vote
1answer
211 views
Configuring Enterprise Library 5.0 With Prism 4.0
I am trying to use EL 5.0 with prism.
As part of the bootstrapper process - I create the Logger Facade adapter- which uses following code for logging...
var logwriter = ...
2
votes
2answers
728 views
Why does Prism encourage use of the Service Locator anti-pattern? [closed]
As I move from MVC to doing some WPF with Prism, I buy a Prism book and once again i'm shocked to still see the Service Locator which is a known anti-pattern. I have read the books like Dependency ...
0
votes
1answer
229 views
Injecting WCF service proxy into viewmodel
I currently have a Silverlight application using Prism and MEF. I connect to several WCF services in this application but use a "controller" class to hold the instantiated client-generated service ...
0
votes
1answer
320 views
MEF/Prism Export/Import attributes on properties
Here's the situation
I have 2 singleton classes (ViewModels in fact).
[Export]
[PartCreationPolicy(CreationPolicy.Shared)]
public class CompanyViewModel, INavigationAware
{
private Model.Company ...
0
votes
0answers
48 views
Implicit data templates and RegionManager
I'm using RegionManager to manage tabs in a TabControl. I add a view model to the views of a region which then get turned into the concrete view using an implicit data template. The issue I have is ...
1
vote
2answers
281 views
Set Focus OnNavigatedTo in Prism for WPF Application
I would like on navigation between views in a WPF application using Prism to have the ability to set focus to sepecific textboxes so a user can perform navigation and then begin typing in the relevant ...

