Prism is Microsoft's Composite Application Guidance for WPF and Silverlight
0
votes
1answer
31 views
Master-detail in XAML with - managing ListView selection through binding/commands whilst allowing cancellation
I'm attempting to build a WPF application for demonstration that follows the best possible MVVM practices, and I've found quickly that I'm not sure what the best practices are! :)
I have a specific ...
-1
votes
0answers
18 views
How to use Multiple pages in one window with multiple viewmodels using MVVM in WPF
I want to use multiple pages in one window (I'm using different viewmodels). Currently, when I navigate to the other page, the data is loaded but isn't showing in the window.
Also, can you help me ...
0
votes
0answers
32 views
Prism store app example Xaml errors
I'm building a win 8 store app using microsoft prism. I'm following the guide here.
When I'm looking at the store app sample I get a lot of errors in the views.
Error 3 Application is not ...
1
vote
1answer
34 views
Creating a new RegionManager with only current Region in it
I am using PRISM to build an application.
I have several views with the same name, each of this views have a Region with the same name. For not naming evey Region different I tought about creating a ...
0
votes
1answer
48 views
Unity dummy resolve to minimize the cost of object initialization
I have a component that the constuctor takes a long time to execute (it uses SAPBOBSdll to connect to a SAP Business One database) in my Prism aplication. I register it in the Unity container:
...
-2
votes
0answers
15 views
call one view from same module conditionally in same region in shell window [closed]
I have a Module called Masters which contains 5 master Views and i want to invoke one view a time in same region based on link selected in navigation in shell window in MVVM way.
0
votes
0answers
29 views
Datatemplate binding control not showing error
I am working with wpf 4.5, Prism 4.5 and EF5. I have a ViewModel which binds to a View. On the ViewModel there is one item which binds to a DataTemplate. This item has a getter and setter and a ...
0
votes
0answers
23 views
OnRender not called after InvalidateVisual()
A custom WPF Control overrides OnRender. The method generates and displays a Path from custom data. The data provider is bound using a Dependency Property. The Dependency Property registers for an ...
0
votes
2answers
31 views
Error: BindingExpression path error:
I am using Win 8 Store Prism framework and have built a page and associated viewmodel. I am trying to get my first binding to work but have failed an uncovering the cause of this error. (I wish I ...
0
votes
0answers
12 views
Prism region discoverty
Doing a standard PRISM Mef MVVM application. I have several modules and I want the shell (main project) to be responsible for injecting the start module in the MainRegion of the shell.
...
0
votes
0answers
17 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
45 views
Navigating between Views
I'm pretty new to WPF with Prism and really new to the MVVM Pattern.
Right now my Application is splitted in 3 Parts:
MainApp (Contains the Bootstrapper and the Shell)
MainApp.Core (Contains the ...
8
votes
0answers
167 views
Defining Scope in MEF with CompositionScopeDefinition
At the root of my application I have an AggregateCatalog and a CompositionContainer like so:
AggregateCatalog aggregateCatalog = new AggregateCatalog();
CompositionContainer compositionContainer = ...
0
votes
0answers
25 views
Choosing language manually in multi-language WiX installer
I would like to build a multi-language installer for my App which is currently available in English and German.
I will make the English Installer default and use a transform for the German Installer.
...
0
votes
1answer
10 views
Disposing Scoped RegionManager
I have a TabControl and I am creating a new scoped region manager for every tabItem which holds the same usercontrol (which has nested regions in it):
regionManager.Regions["TAB_REGION"].Add(theView, ...
0
votes
1answer
45 views
How to access & use an object which has been created on a different thread in WPF
I am having following scenario that I need to show preview option in my application like what ms-word does. When we click the info option under File menu item, then preview of document is shown.
In ...
0
votes
0answers
14 views
How to initialize a view that is placed in a region when the module is initialized?
Views that are to be placed in a region when a module is initialized (IModule.Initialize) are usually registered using RegionManager.RegisterViewWithRegion. But if the view must initialize itself, ...
0
votes
0answers
13 views
How to binding Views to ListBox and give initial value to binded ViewModels?
App have two views, MainView, and RowView. The mean goal is to dynamically add or delete RowViews to or from ListBox in MainView.
The problem is that RowView can't get it's Row index when add it to ...
1
vote
1answer
39 views
compose new model objects[recursively] of a complex model object(inside viewmodel), from properties of view in MVVM WPF
I have view class which is called Client, its view model is ClientViewModel. ClientViewModel is has a model object ClientInfo. This ClientInfo [Model] is complex object, which has properties of Model ...
1
vote
0answers
38 views
How to setup a class to load on start up in my WPF shell application, without calling inside Application Start up method
I have Prism Shell application, There is class which primarily focused execuing method on subscribed events. These events are fired from a separate module in my solution.
My class is ...
6
votes
3answers
179 views
Prism module system from within WCF service?
Can you boostrap a Prism module system from within the WCF service?
Because no matter what I do my MEF dependencies are not being fulfilled.
E.g.:
This is my WCF service implementation
public class ...
0
votes
1answer
37 views
Register views with regions depending on the user rights in Silverlight
We have a module class which implements the IModule interface and it has only one method Initialize() in which we register our views.
Is it possible to register these views after successful login?
I ...
0
votes
0answers
74 views
MVVM WPF Command not firing
I have MVVM WPF application. I create menu via a separate service and set to load time.
My shell view which contains the menu is as follows,
<ItemsControl x:Name="MainToolbar" ...
2
votes
2answers
63 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 ...
0
votes
1answer
25 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}" ...
0
votes
0answers
24 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
23 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
25 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
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
33 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
57 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 ...
0
votes
1answer
24 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 ...
0
votes
1answer
81 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 ...
1
vote
1answer
38 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 ...
0
votes
0answers
22 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
60 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
99 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
25 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
1answer
20 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
33 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
54 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 ...
2
votes
0answers
39 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
2answers
112 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
1answer
89 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 ...
0
votes
1answer
48 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
35 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 ...
1
vote
1answer
50 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
0answers
53 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
85 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
0answers
35 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.
...

