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

learn more… | top users | synonyms (1)

1
vote
1answer
7 views

WPF Prism - Send an object in navigatoin

I'm writing a WPF/MVVM application using Prism/Unity. I'm having issues on how to transfer data from one usercontrol to another when navigating a region. I have a region This is populated by a ...
1
vote
1answer
146 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
2answers
24 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
1answer
17 views

WPF menu not shown in proper view

I am generating menu items dynamically, following is my menu <ItemsControl x:Name="MainToolbar" cal:RegionManager.RegionName="{x:Static inf:RegionNames.MainToolBarRegion}" ...
1
vote
1answer
420 views

Large Prism/Silverlight application - multiple modules talking to single data service

I am developing the framework for what will be a large data-driven Silverlight application using Prism. I am creating multiple modules for different pieces of the application, but all modules need to ...
0
votes
0answers
15 views

How to activate an existing order details view in PRISM MVVM StockTraderRI demo application?

Background: 1. With StockTraderRI demo application when you select an action in the PositionSummary view an OrderCompositeView is activated by the OrderController. The only information displayed on ...
0
votes
1answer
35 views

WPF Prism MVVM - Same “Partial View with Command” in one page, how to subscribe the Command?

My project using MVVM design pattern using Prism and Unity, basically following the famous Prism video by Brian Lagunas, but the video didn't mention how to create/use partial view, User Control used ...
0
votes
1answer
17 views

Something similar to RoutedCommands, but for MVVM

I have a Command bound to my MainWindow via CommandBinding to the Delete key. I want that, depending on the context (which element is active), the same command would be translated to different ...
0
votes
1answer
18 views

How to redirect ILoggerFacade to ViewModel?

I want write my logs to the ViewModel, so I can expose logs to the users. First I bind View to ViewModel <TextBox Grid.Row="1" TextWrapping="Wrap" Text="{Binding Logger}" AcceptsReturn="True" ...
0
votes
0answers
18 views

RIA Services errors after application pool restart

I have done some searching around and found some issues that might be related to mine but not the same, so I hope someone can shed some light into a problem we are experiencing. We are developing a ...
1
vote
1answer
37 views

How to add menu to application in prism way in WPF application?

I have been following Prism reference implementation of stock trader app. I am building application following the same way. but I am bit confused at how I shall add menu to my application in Prism ...
2
votes
4answers
1k views

Passing state of WPF ValidationRule to View Model in MVVM

I am stuck in a seemingly common requirement. I have a WPF Prism (for MVVM) application. My model implements the IDataErrorInfo for validation. The IDataErrorInfo works great for non-numeric ...
0
votes
1answer
16 views

Can't get same instance by using RegisterInstance

I want register ShellModel with container, so I can resolve it in ViewModel whcich in another module, then I can change the window style in the ViewModel. But I can't get the same instance of ...
1
vote
1answer
31 views

PRISM/Unity IDisposable

I have some modules that need to do some tidy up work when they are closing, however it would appear that PRISM/Unity does not respect the IDisposable interface. Does anyone have any suggestions on ...
2
votes
2answers
400 views

Prism shell template, two instances of ShellView being created

Started with a default Prism Shell project and all was working as expected. I began making changes and modifications and now the application is started twice. protected override DependencyObject ...
0
votes
3answers
1k views

MVVM View event Viewmodel command binding

I'm looking for a good (read: simple) example on how to implement event aggregators with Prism. I've never used Prism and I'm also quite new to MVVM itself. I have a WPF canvas as a View and I want ...
0
votes
0answers
17 views

Prism - Stocktrader like AnimatedTabControl with different behavior

So, I'm using some parts of StockTrader RI (STRI) of Prism as a template to build my application. I've and AnimatedTabControl in my shell view. When I launch my app, I can load the Main View on ...
2
votes
1answer
42 views

Is this the right way to shutdown prism application without default exit button?

The window of app do not have boarder, so there is no exit button on the right conner?How can I close it in right way? This is my way, fisrt bind a command to custom exit button. <Button ...
0
votes
0answers
62 views

'[Unknown]' property does not point to a DependencyObject in path '(0).(1)[1].(2)'

I have no clue what's the exception trying to say,i was searching in the forum but still i couldn't figure it out,so posting my question here. Here is my xaml <StackPanel ...
0
votes
1answer
22 views

Resource management in decoupled applications

I'm building decoupled application using Unity, Prism. The problem I worry about is resource management in services. Easier to explain in example: Imagine w have some interface IDataRetriever which ...
0
votes
2answers
79 views

Unity activation error occured while trying to get instance of type

I am using Prism 4 with Unity Extensions and the MVVM pattern. public class Bootstrapper : UnityBootstrapper { protected override void InitializeShell() { Application.Current.RootVisual ...
0
votes
0answers
13 views

How to deploy any module of prism application?

In my application i have more then 10 modules now once i publish the application using clickonce after that i want to publish those modules which are changes.. Basically i do not want to publish ...
0
votes
1answer
28 views

EntityFramework - Use Entities in Modules without access to the Database

I'm currently creating an application which is highly modular (using the Prism-Framework) and accesses a database via the EntityFramework implemented in CodeFirst. My goal is to seperate the actual ...
0
votes
0answers
47 views

Unity Generics - Exception on Resolve [closed]

I am fairly new to Unity and was trying things out today, when a huge problem occured. Unity throws an exception on resolving a generic interface. I did some research and found some solutions, which ...
-1
votes
0answers
22 views

what is the difference between PRISM VS GALASOFT [closed]

After reading a lot of articles and questions on stackoverflow, it is still unclear to me that what is difference between PRISM and Galasoft. what PRISM is intended to be used( is it only for ...
3
votes
1answer
252 views

wpf - best practice of registering a DelegateCommand to a CompositeCommand

iv'e got a CompositeCommand exposed globally in my startup project public static class Commands { public static readonly CompositeCommand DiceRolledCommand = new CompositeCommand(); } in ...
1
vote
3answers
2k views

Prism RequestNavigate does not work

In each view public partial class View2 : UserControl, IRegionMemberLifetime, INavigationAware { public bool KeepAlive { get { return false; } } bool ...
1
vote
2answers
205 views

Proper way to call method on custom Control or UserControl with MVVM pattern?

I'm using PRISM and MVVM in my modular Silverlight application. I'm still trying to figure out PROPER way to do interactions in MVVM fashion and 2 methods that PRISM and samples offer is not something ...
2
votes
0answers
34 views

WPF Load resources via PRISM

I have a WPF application that is being written using PRISM. I want a way to allow it to be "re-branded" easily. So I started to create a module, that when initialized added resource dictionaries to ...
0
votes
1answer
79 views

WPF Navigation between child views

I have an application that consists of a shell, a content control that acts as a region and child content controls that goes into that. When the application loads, it starts in a file load view, and ...
0
votes
1answer
39 views

Replacing Default IModuleInitializer Using MEF in Prism

I'm trying to override the implementation Mefmoduleinitializer on their own, as described in Replacing Default Types Using MEF. My class (in Shells assembly) is : ...
0
votes
1answer
73 views

Re-initializing application in WPF / PRISM

We are building a WPF application using PRISM and MEF. In the application, the user will start out by browsing to a 'project file' which contains a large amount of meta data. Based on the project ...
3
votes
2answers
4k views

How to change a WPF control's visibility from ViewModel

I've an WPF application where tried to implement MVVM pattern and Prism 2. I have a Usercontrol which has subscribed to an event fired from another Usercontrol. I would like to toggle visibility of ...
3
votes
1answer
974 views

Prism, Unity and default type registration in Modules

Technologies C# 4.0 Prism 4 with Unity for DI WPF MVVM Preface There are two projects in my solution, MyApp.Shell and MyApp.ModuleFoo MyApp.Shell's Unity Bootstrapper protected override ...
1
vote
1answer
40 views

Set property From other module prism

I have wpf application with Prism and mvvm architecture in 1 module i have a treeview and in other module i have textbox.Both modules are loading properly. What i want to do is -Click treeview node. ...
0
votes
1answer
27 views

Use dependency injection with specific instance - MS Unity

I'm writing MVVM application which based on PRISM. I learning PRISM in those days and I have a technical question about UnityContainer. Is there any way to inject specific instance while I using ...
0
votes
0answers
39 views

Activation exception on ServiceLocator

I'm trying to set up a MVVM application using PRISM. This is how i set my DataContext public MainWindow() { InitializeComponent(); this.Loaded += OnLoaded; } private ...
1
vote
0answers
68 views

PRISM: remove view from region

I create games manager which could select different games in region using PRISM MEF. There is a static shell and dynamic content in "MainRegion". Each game is separated module(assembly) and it's ...
0
votes
1answer
93 views

how can i install shineOn in Delphiprism?

how can i install shineOn in Delphiprism? I download ShineOn package for useing old's delphi functions such as inttostr and ... but i can istall or add them in my delphi area. Please help me. Regards
0
votes
0answers
32 views

Step By Step creation of native images for .net 4.0 using vs 2010 and integration for incresing perormance and to avoid memory leaks

I am having an MVVM Prism WPF C# application with above 6 separate modules of projects tied together to a single solution. My app is using third party controls (Devexpress) throughout the Xaml. ...
0
votes
2answers
44 views

PRISM - Create a new dialog instance to each interaction request -

I´m facing a problem: If I do the first request to the dialog and add it to Grid.Children...some times I have to call another dialog in this activated one, and in this case the same instance is being ...
1
vote
3answers
1k views

PRISM module app.config configuration settings

We have the beginnings of a modular wpf application built using prism. We want to allow for each module to have specific configuration - app settings / connection strings etc. We've currently got ...
1
vote
1answer
41 views

Some questions about Prism navigation in WPF

I thought that if you registered a view with the IoC container as "Singleton" then the same instance would be reused each time you navigate to it, while registering the view as "Transient" would ...
0
votes
0answers
23 views

prism solution project assembly

i'm starting with prism, i have a solution in vs 2010 using prism, one project(PrimUI is where i have the shell, another project (PrismUI.infrastructure) is where i have for example region names ...
2
votes
2answers
250 views

How to Unit Test BackgroundWorker + PRISM InteractionRequest?

I have a reoccurring pattern in my WPF MVVM applications that has the following structure. public class MyViewModel : NotificationObject { private readonly IService _DoSomethingService; ...
1
vote
1answer
37 views

Creating a “mergeable” toolbar with Prism regions?

I'm developing a WPF application where I would like a common toolbar along the top of the screen (when I say "toolbar" it won't be a WPF ToolBar control, more likely just a series of image buttons ...
1
vote
1answer
76 views

WPF+PRISM on windows 8 region.active crash

I'm working om project base on WPF .net 4 with Prism 4.0, after I upgrade my machine from windows 7 to windows 8, the project crash when reach the point of active view object view = ...
0
votes
0answers
60 views

Unhandled Exception using WPF/MvvM/Prism4/Eventaggregator

We have developed an application using WPF/MvvM/Prism4/Eventaggregator. We have a big problem with unhandled exceptions in our application. We have all these trapped/implemented in the application ...
0
votes
0answers
161 views

WPF Control losing focus when clicking on a tab

On a tabcontrol I have several tabpages, on one of the tabs there is a textbox in the content. This textbox is content bound with a simple Path=PropertyName and UpdateSourceTrigger=LostFocus. The ...
1
vote
1answer
155 views

PRISM: How to add a view model to a region and create the view automatically?

I´m new to PRISM and trying some things out. I´m struggeling a little bit with MVVM. The way you "connect" a view with a viewmodel is clear: injection through unity, or set the data context ...

1 2 3 4 5 33