Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
6
votes
2answers
1k views

WPF and Prism View Overlay

I need some help with overlaying views using the prism framework.Its a little more complexed than that so let me explain.I could be over-thinking this as well :D i have shell (wpf window) and i have ...
2
votes
1answer
145 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
1answer
497 views

Proper implementation of NLog and Prism

What would be the best way to implement NLog in my Prism / CAL WPF application. This might be an amateur question, I am a bit new to the whole Prism framework :) I thought about putting the reference ...
2
votes
1answer
288 views

Getting started with Prism (Ent Lib v5) and building an app framework

Can anyone point me to any useful examples of an application framework being built using the newly released Enterprise Library 5? I have previously used v4.1 and after downloading the source for v5 ...
1
vote
2answers
406 views

MouseDoubleClick event in View

How do I bind MouseDoubleClick event of wpfdatagrid in the view as I'm using mvvm and Prism 2.
1
vote
1answer
540 views

what's the difference between MVVM and Prism v2

what's the difference between MVVM and prism v2 design pattern to develop SL and WPF applications?
1
vote
1answer
827 views

Changing Views Within a Prism Module?

So I have a PRISM v2 (M-V-VM) application up and running. It's 4 modules that load into a tab control. Great. Now my question is - where to go from here? Most tutorials seem to stop at this point. ...
1
vote
1answer
598 views

Prism 2.1 Publish/Subscribe with weak reference?

I am building a Prism 2.1 demo by way of getting up to speed with the technology. I am having a problem with CompositePresentationEvents published and subscribed via the Event Aggregation service. The ...
1
vote
1answer
1k views

Composite WPF and AvalonDock

Has anybody tried PRISM and AvalonDock (latest release with DocumentSource property) together? I already had a look at http://www.youdev.net/post/2009/07/17/AvalonDock-Documents.aspx but it just ...
0
votes
0answers
31 views

Prism V2 + “dynamic” views

I'm new to an already existing WPF/PRISM project. The application I'm working on has UserControl that is composed of a grid with 3 rows: A ContentControl is in the row 0 and declares a region named ...
0
votes
1answer
48 views

WPF Prism (CAL) - Find all Subscriptions to the EventAggregator on any event

Is there any way of looking at all the subscriptions contained within the EventAggregator for all Events? Theres only a .GetEvent method off the EventAggregator ... but I'd just like to see all ...
0
votes
2answers
243 views

WPF - PRISM (CAL) - automated functionnal testing

I'm currently new in a project that was started 1 year ago. This project is using C#, WPF, PRISM (CAL), Entity Framework, LINQ, etc. The application is done using the MVVM pattern. There are some ...
0
votes
1answer
140 views

Visual Studio 2010: Project Linker - I still don't understand it's purpose

Project Linker: Synchronization Tool -- I have read this and still don't understand what the point of it actually is. Oh, and I tagged this with prismv2 because it seems to have some association to ...
0
votes
1answer
115 views

Sort ItemsControl Prism v2.2 Region without a bound collection?

Is there a way to sort the views that get added to a ItemsControl region? The views being added are registered with the container and added to the region in each unique module. Some pseudo code... ...
0
votes
1answer
67 views

Changing Modules location in specific region

I've Prism App with some regions. In one specific region there are some views from different modules. By default the views appears in region according to registration order. I want to change the ...
0
votes
1answer
52 views

Integrating Legacy UI with PRISM

We are currently developing Sliverlight 4.0 based web application using PRISM 4.0 for Sliverlight 4.0. This web UI is a composite application consists of Legacy UI developed by some 3rd party and ...
0
votes
1answer
314 views

Help on WPF Databinding to ViewModel Property (Prism)

Greetings guys, hopefully somebody has fresher eyes and can help me pinpoint the problem here, I'm trying to create a small app with prism and the MVVM pattern, everything was working nicely up to ...
0
votes
1answer
164 views

How to remove Region and add new ContentControls from Module

I've set only one region in Shell "LoginRegion" <!-- Login Region --> <Border Grid.Row="0"> <ContentControl x:Name="LoginRegion" Regions:RegionManager.RegionName="LoginRegion" ...
0
votes
1answer
289 views

How to passing parameter to constructor when Resolve a View..?

my View constructor: public View1(IRegionManager regionManager, IUnityContainer container, bool myParam) { } How to set myParam when I do Resolve<View1>()? Thank you.
0
votes
1answer
32 views

Added view does not appear on screen

Why my "mainRegion.Activate(view);" doesn't display the view on screen? It only works if I remove the default view that registered (RegisterViewWithRegion) in ModuleInit.cs though I don't put ...
0
votes
1answer
502 views

PRISM View Injection/Navigation in Same Module

This is ModuleInit.cs in Products module public class ModuleInit : IModule { private readonly IUnityContainer _container; private readonly IRegionManager _regionManager; public ...
0
votes
2answers
225 views

mvvm - prismv2 - INotifyPropertyChanged

Since this is so long and prolapsed and really doesnt ask a coherent question: 1: what is the proper way to implement subproperties of a primary object in a viewmodel? 2: Has anyone found a way to ...
0
votes
1answer
277 views

Adding Prism Module as Silverlight class library

I'm building a silverlight project based on the Prism 2.1 version. Added a shell Added a silverlight class library (Module A) Added a reference of module A to the shell Added ModuleA in the ...
0
votes
1answer
267 views

Prism ModuleDependency ModularityException

I am creating a simple Prism 2.1 demo that uses the 'directory search' approach to populating the module catalog. My shell is set up with a Windows Explorer UI; it has a Navigator region and a ...
0
votes
1answer
1k views

Silverlight Prism - Loading module(s) after successful login/dependencies between modules

I have a Silverlight Prism application that includes a toolbar module with login controls. I currently have a module in the main region set to InitializationMode.OnDemand in the Bootstrapper and can ...
0
votes
1answer
249 views

Using scatterview as a region with Prism throws an exception

I'm playin around with Surface and I'm trying to use a scatterview as a module region. <s:ScatterView cal:RegionManager.RegionName="{x:Static ...
0
votes
5answers
140 views

Prism V2 not working with Silverlight 3.0

I am currently doing a silverlight application with Prism v2. But when I am adding the reference dlls two dlls are not recoganised. Microsoft.Practices.ServiceLocation.dll & ...