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

learn more… | top users | synonyms (1)

1
vote
1answer
91 views

Do my URIs have to be so long and explicit?

I'm writing a modular application using Microsoft Prism and Unity. My application's Shell project loads various DLLs which all include their own /resources or /images folder and user interface views. ...
1
vote
1answer
108 views

How to initialize WPF Browser Application with Prism?

I'm starting to developp a WPF browser application using Prism framework with MEF, but my lack of experience with prism make it difficult to start. All of the examples, tutorials or quickstarts that ...
0
votes
1answer
55 views

Custom window in the bootstrapper as default window

What should be the procedure to set a custom RibbonWindow as the default shell window. We are getting this window from a module. Which we registered and initialized. protected override ...
1
vote
1answer
289 views

How to navigate in WPF using PRISM and bind DataContext

There must be a lot of questions surrounding this area but I couldn't find anything to help in my instance. The problem I'm experiencing is getting my ViewModel, and specifically a property within ...
0
votes
2answers
285 views

WPF Prism - Preventing Tab switching using IConfirmNavigationRequest not working

When navigating between Views/ViewModels using RequestNavigate (i.e. programmatically), the IConfirmNavigationRequest methods on the appropriate ViewModels are called as expected. However, if you ...
2
votes
1answer
143 views

Prism Module Level Exception Handling

I am trying to see if it is possible to handle exceptions at the viewmodel level in addition to the global level handing (Application.UnhandledException). Currently, if one of the viewmodels throws ...
2
votes
0answers
108 views

Can't catch ActivationException with Prism NavigationAsyncExtensions 'RequestNavigate'

I am using Prism's NavigationAsyncExtensions method RequestNavigate on an IRegion: // Attempt to navigate to the given view try { _mainRegion.RequestNavigate(viewName); } catch { throw new ...
2
votes
2answers
57 views

Internationalized Wizard Passing model data between the wizard steps

I've found the following example of a wizard located here: http://www.codeproject.com/Articles/31837/Creating-an-Internationalized-Wizard-in-WPF Now I've spent quite some time looking at the example ...
0
votes
1answer
37 views

Is this an acceptable way for a VM to respond to a property-change in another VM?

Suppose I have 2 VM classes that implement INotifyPropertyChanged (or Prism NotificationObject in this case) and I want one VM to respond to a property changing in the other VM? Suppose these are ...
2
votes
0answers
75 views

Registering view with castle.windsor for Prism navigation

I'm using castle.windsor 3.1 in a WPF application with Prism 4.1. I want to use the Prism navigation framework. This requires that views are registered with the container "as object". I'm struggling ...
0
votes
2answers
284 views

Xaml TabControl in the top of window

Hi All! I have a trouble with xaml-markup design that is shown on a picture. How to place window buttons in one line with tab item headers TAB1, TAB2, TAB3? I use custom control for window buttons ...
1
vote
0answers
96 views

how to prevent validation when view and viewModel are initialized and displayed for the first time?

I am using Prism+MVVM+C#+WPF for a LoB application. I've created a ViewModelBase class, which is inherited by all my viewModels. This base class implements: IViewModel (one of my base interfaces) ...
2
votes
1answer
138 views

Switch between Views in different Modules using Prism and Unity

I am making a proof of concept WPF application with Prism 4 and Unity, but I run into some basic problems. In our solution we have the following projects: -AppName.Desktop -AppName.Modules.ModuleA ...
1
vote
1answer
470 views

Binding Command in Datagrid with Prism WPF

I have searched around google about my problem and cant find any answer that can solve my problem. I tried to binding a command from a button inside my datagrid in WPF. I used Prism to handle the ...
0
votes
1answer
73 views

application shutdown issue

in a prism application i have created a login form that start in a module. After the user is authenticated the login form wait for all application modules had been initialized (like a splah screen ...
0
votes
1answer
118 views

MEF and Import to interfaces?

I'm using Prism with MEF Extensions and am having some trouble with project setup regarding an import to an interface. The problem is that the interface doesn't live in the same assembly as the ...
0
votes
0answers
121 views

Read-only dependency property in UserControl - how to call SetValue with a ViewModel property?

I'm defining a read-only dependency property via RegisterReadOnly and have removed the CLR-wrapper for the SetValue (approach outlined here and similar to MSDN article ...
1
vote
1answer
43 views

Prism embedded image

I have a module called xModule. I have an image inside it marked as embedded resource. Inside the initialization of the module I tried : string stFileName = "SmallIcon.png"; string stAssembly = ...
0
votes
1answer
127 views

WPF Prism reloading module using IModuleManager.LoadModule

I need to display views in a Module.The Module Registers it's view using in Initialize method. User will select module name from drop down list. First time it works using ...
0
votes
2answers
108 views

Any way for a dependency property on a UserControl execute a command on it's view-model on value change?

Suppose there's a UserControl with a dependency property (a collection of some object) - is there anyway for, when the dependency property is set, to automatically execute a command exposed by the ...
0
votes
2answers
74 views

Should I put all the constructor parameters in the interface to be resolved for the Unity?

I am using Prism with Unity to do the IoC. I have some classes that have some value type parameters (e.g., string path, int number) in their constructors. How should I deal with these parameters if ...
2
votes
3answers
100 views

Localization in enterprise application

where would you place "localization & globalization" in an enterprise application 3-layered builded in c# WPF with MVVM and Prism? I mean in an application built like the pattern describe in msdn ...
0
votes
1answer
67 views

Force a service to close on Windows closing - Prism

I'm using a Prism and the MVVM pattern I've got a service running in a repository that is registered in my container like this: _container.RegisterType<ITheService, TheService>(); ...
0
votes
0answers
166 views

WPF Prism How to relate Module, View and Region with Unity container

I am having difficulty in finding a relation between a given Module and Views(plain WPF user control) which has been Registered to different regions using this Module (in IModule Initialize() method). ...
0
votes
2answers
168 views

Why does the following WPF Command not fire?

C# file: public partial class MainWindow : Window { public DelegateCommand<ICollection<string>> TestCommand { get; set; } public ICollection<string> TestParameter { ...
1
vote
1answer
108 views

Should I prefer to use eventaggregator in domain objects?

After reading many articles on Prism. I am still confused!! I am trying to create an application whose domain object will be completely independent of GUI. User can interact with application from ...
1
vote
2answers
218 views

SL5 + Prism 4.1 Dynamic XAP download takes too much time to load

I am using SL5, Telerik SL5 DLLs, Prism4.1 & MEF for my application and I have splitted my main application into smaller modules. And also, i have enabled "Reduce XAP size by enabling in ...
0
votes
2answers
274 views

How do I open a new window from a view model and pass parameters to it in MVVM?

I have a window with a list, where clicking a list entry will show a new window for a detail view of that item What is the cleanest way to do this in MVVM? I thought of just doing a ...
0
votes
1answer
396 views

What does Microsoft.Practices.ServiceLocation.ServiceLocator do?

I know this sounds lame, but MSDN seems to have a bunch of empty information on it. Like this link ServiceLocator. I just rolled onto a project with Unity and Prism. I have found it in some code where ...
0
votes
3answers
84 views

How do I solve the following design in the MVVM paradigm? (newb)

I'm still starting out with MVVM and read through all the MSDN Prism examples but I'd nonetheless like some guidance with the following design problem which I feel will help me latch onto the Prism ...
1
vote
1answer
317 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 ...
1
vote
0answers
139 views

WPF DataTrigger and button using PRISM

I have a question about clarifiying the Data Context in WPF. I have a PRISM based application. I am attempting to put a DataTrigger on a Button control. This Button control is configured to use a ...
0
votes
0answers
45 views

Object Ref not set to instance by Region Manager

<Window x:Class="Agile_Project_Management_Tool_2012.TheShell.Shell" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
2
votes
4answers
385 views

WPF optimize loading on the UI thread

I am trying to optimize the loading times for my WPF prism application. The loading is basically a loop of using reflection to create instances of UI elements and then adding them to the main window ...
0
votes
2answers
81 views

Getting Silverlight 5 error on IIS with Prism “Resolution of the dependency failed”

I am writing an application that base on silverlight 5 and MVVM framework and Prism library. I work with prism with unity container. When I test my application in VS 2010 it works correctly but when ...
0
votes
0answers
120 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
108 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 ...
1
vote
2answers
312 views

UI Not updating from ObservableCollection called by a command from a seperate ViewModel

private ObservableCollection<ProjectItem> _projectItems; public ObservableCollection<ProjectItem> DataItems { get { return _projectItems; } } public ...
0
votes
1answer
162 views

Handling exceptions in Prism 4 modules

I've gone through a number of threads here about this topic with no success. It seems that in the App.xaml.cs of our WPF application, handling DispatcherUnhandledExceptions and ...
0
votes
2answers
371 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
134 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 ...
2
votes
1answer
475 views

How do I pass parameter to ViewModel's constructor in a WPF application?

I see people suggests using Messenger/EventAggregator to pass parameter to ViewModel when "current" target is changed, but it doesn't work on my case. Say I have a ViewModel class like this: class ...
4
votes
2answers
127 views

Long build times due to copying duplicate references

I have a large WPF MEF PRISM solution (100+ projects), and our build times are around the 2 minute mark on quad core 8 GB machines. I output all binaries to the same output path "..\Bin" so that ...
1
vote
2answers
170 views

Is redundant to use Prism and GalaSoft MVVM toolkit in the same app?

I just was given the task to start supporting a WPF app that uses Prism and the GalaSoft toolkit. After reviewing the technology for both frameworks it appears to me that the designer of the app was ...
0
votes
1answer
203 views

Prism: Navigation between Shells?

I want to create an application with Silverlight & Prism where the user can navigate like this: The red rectangles depict regions with different Prism modules inside (6 different modules in ...
0
votes
1answer
99 views

Update window data. WPF

I have a WPF project with PRISM. In my bootstrapper I have following code. protected override DependencyObject CreateShell() { Form1 form1= new Form1(); Form2 form2= new ...
2
votes
1answer
123 views

WPF Prism Load XML in module

i am experimenting with prism and the possibilities it brings to create applications divided into modules. In one of my modules i want to load data from a XML file but can't get it to work so that ...
0
votes
1answer
101 views

Prism Singleton Settings

Want to implement a pattern-based approach for having a Settings Class which could be used in every module. I have : Business Objects in an assembly (Doesn't Referenced anything) Common Assembly ...
2
votes
1answer
63 views

How to route input events to a specific canvas among many canvases that share the same area?

I have some graphical oriented Windows-Store-App application that logically composed from few layers. Each layer draw its own type of things. For some reasons , I chose to represent each layer as a ...
0
votes
2answers
75 views

Entity Connection in a Modular Prism Application

Connection String Meta : res://Xz.Business.xModule/Model.RecordzModel.csdl| res://Xz.Business.xModule/Model.RecordzModel.ssdl| ...

1 3 4 5 6 7 33