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

learn more… | top users | synonyms (1)

3
votes
0answers
149 views

Preserving call site information when using log4net with ILoggerFacade

I am using Prism 4 and want to allow my various modules to log using log4net. At the moment I have the following ILoggerFacade implementation: public class CustomLogger : ILoggerFacade { private ...
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 ...
2
votes
0answers
138 views

mahapps metro tabcontrol as prism region style

I have problem with prism and mahapps.metro library. I set TabControl as my region in my Shell and here i have problem beacouse every tabitem(module) not react on Triggers for example: ...
2
votes
0answers
110 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
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 ...
2
votes
0answers
150 views

How to detect difference between prism & non-prism 64 bit app when using TwainDotNET

I am trying to use https://code.google.com/p/twaindotnet/ for our internal app that is running on Windows 2008 terminal server (64 bit). I have found few remarks on the fact that this library cannot ...
2
votes
0answers
185 views

XAP Caching in Silverlight OOB, when using Prism

I have a Silverlight Out Of Browser Application built using Prism Framework. I am using WebClient to download the application module XAPs depending on the user logged in to the application. Now my ...
2
votes
0answers
148 views

Cannot create instances of the Types contained in the loaded Silverlight Prism XAP modules

My Silverlight PRISM application is loading several XAP modules. I want to be able to get access to the types contained in the loaded modules so I could create instances of the views and modelviews ...
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 ...
1
vote
0answers
43 views

Unity & Prims Modularity - using libraries in modules

i need again help by building a application with modularly concept. I use unity and prism for it and configure it via App.config, like you can see in another question from me. Now i want to load ...
1
vote
0answers
80 views

opening a child window in silverlight by using .aspx file from the web project

I am new to silverlight and asp.net, we are using silverlight and prism framework, I have a main page designed in the .apsx page with the help of web controls (.ascx) and web pages(.aspx). I want to ...
1
vote
0answers
34 views

Prism: Get target view in ConfirmNavigationRequest

Prism allows to decide if a navigation request can be performed by using the IConfirmNavigationRequest interface. With this the ConfirmNavigationRequest method is called before the view is replaced by ...
1
vote
0answers
152 views

Navigate between views WPF PRISM application

I am working on a WPF PRISM application that has the following structure (I have simplified to explain better without additional layers). I am using Unity as my DI/IOC AppMain - Bootstrapper Gui - ...
1
vote
0answers
57 views

WPF PRISM Module and AutoMapper

Could I call the Mapper.CreateMap in each Initialize method of the prism modules to configure the map for objects in different modules? I prefer this method so the module and mappings can be developed ...
1
vote
0answers
88 views

Boxing a reference type (class)?

I have this very simple property (this is a WPF project using Prism Notifications and Interactions) public bool ConfirmNavigation { get { return _confirmNavigation; } set { _confirmNavigation ...
1
vote
0answers
59 views

Could not load assmebly, library reference versus main project

I have a project that is made up of several other library projects and a main application (using Prism to build a composite application). I'm using Telerik.Reporting which uses ...
1
vote
0answers
98 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) ...
1
vote
0answers
82 views

How to get a good modularity structuration with Unity/PRISM project

i'm trying to create two modular project with Unity/PRISM based on the same catalogModule but with different behaviour. My problem is i want exactly the same module but my two application have a ...
1
vote
0answers
96 views

Scrollviewer inside tabItem using WPF Prism

I am using wpf Prism Controller to add multiple tabs to my view in wpf. But sometimes when my view is large i want a scrollviewer in my tab item that can scoll horizontally. How can i acieve this?
1
vote
0answers
61 views

does someone know a good educational sample about use mef with controllers?

I'm looking for an example to teach me about using MEF and controllers in Silerlight. I was seeing StockTraderRI from PRISM examples, but that one looks a little difficult for me to understand all ...
1
vote
0answers
306 views

WPF using PRISM and WCF - how to implement multiple views that connect to WCF services?

I am implementing a WPF client application in MVVM architecture using PRISM (I am new to PRISM). The WPF application has 3 main regions : Left Region Right Region Side Region The left region has ...
1
vote
0answers
111 views

prism composing same module multiple times

I am developing an application with multiple modules (User, Project, Payment, Invoice, etc). Each of these modules has a reference to a common module that contains shared controls named App.Controls. ...
1
vote
0answers
203 views

WCF + WPF + PRISM + Unity + MEF

I am stuck in a problem required some help Scenario: I have a SVC file less WCF service with custom proxy, Using unity container. I have WPF application developing with prism modular approach using ...
1
vote
0answers
189 views

prism:ClearChildViewsRegionBehavior.ClearChildViews=“True” not clearing ChildViews

I have following region hierarchy. MainRegion ----SubRegionA MainRegion has SubRegionA. I load view in SubRegionA through Navigation. The views get loaded correctly. When I re-navigate to MainRegion ...
1
vote
0answers
109 views

Securing Module Discovery in Prism/WPF

I am using Prism 4 to build a WPF Desktop application. I would like to use the DirectoryModuleCatalog to do module discovery to load modules into the shell. Is there a way to do this securely in order ...
1
vote
0answers
252 views

RegionManager doesn't contain the regions that I configure

I am using Prism, MEF (MEF Bootstrapper), and WPF. I am new to these and I have a very simple app that I'm trying to get to work. I have two regions in the main window (shell) wich work fine. I can ...
1
vote
0answers
168 views

MEF and Prism - how to get hold of my modules at runtime?

My question may sound a bit stupid, but I can't work it out and still haven't found an online solution: I have a DataAccess module and an EmployeesModule which needs it. The DataAccess module is ...
1
vote
0answers
68 views

EF-Prism I have two codes (option) for recording

Very good! I have two codes for recording. I do not understand the actual difference in how they work I'm using Prism(WPF) and EF 4. My code works "well" but is very complex, so I'm doing some ...
1
vote
0answers
222 views

Prism: how to load modules from directory by command from another module

I have a composite app builded with Prism and MEF which contains a few modules. User can load any combination of them - they are fully independent and created for specific needs. Now I need a "second ...
1
vote
0answers
70 views

Prism4 and Windows Forms

I have an WPF-Application composed with prism4(and MEF). Now I got the scenario that I need to run this WPF-Modules in a WindowsForms-Environment. Should be able to do so with ElementHosts in ...
1
vote
0answers
48 views

Looking for a category based threading library that works with an MVVM approach (Prism framework)

When developing a WPF MVVM application with the MS Prism library (.NET 3.5) I needed a way to have different modules perform different threading tasks at a specified interval. To give a small ...
1
vote
0answers
162 views

Silverlight: Can I load ViewModel in advance during Mef Init?

I am using MEF and PRISM in my silverlight app. I want to load all the shared ViewModels in the MefInit so that EventAggregator works well. The problem is I have a publisher in one ViewModel (shared) ...
1
vote
0answers
408 views

OneWayToSource in Silverlight and UpdateSource issue

I'm facing some problems binding a CommandParameter to its own Command in an application built using Prism 2.2 as MVVM . Let me introduce what it's happening. I've got a customized listbox with a ...
1
vote
0answers
742 views

Silverlight 4 - Dynamically Loading XAP with App.xaml as page changes the (App)Application.Current.. why?

I have decided not to use the MEF/Prism approach to loading XAP files into a master Silverlight container application i am building. I have 1 Master Silverlight application, and 2 x Applications that ...
1
vote
0answers
609 views

Prism MEF Export / Import Problem

I´m trying to inject an existing instance of a class into my view, but the view only receive a default instance of my class. Here is my export in a view model class [Export("BLA", ...
1
vote
0answers
337 views

Authorization in a Composite WPF / Silverlight application

The Composite UI application guidance states that it does not cover Authentication and authorization. We are currently designing a system which may have Silverlight webparts created in Composite UI ...
1
vote
0answers
156 views

How to determine if a region's view and all its nested regions/views have finished loading

I'm integrating a Prism project with Silverlight's nav framework. Part of the task is to update the URL when an appropriate change happens in the app. One area which I'm stuck with is how to ...
1
vote
0answers
214 views

ClickOnce does not work with Windows Uninstall

I have a prism app. When I setup my Click Once installer for it, it installs fine. I then went and uninstalled it and tried to install it again. I then get this error message: Unable to install ...
1
vote
0answers
356 views

how can config iis in windows 2003 server for silverlight 4 and .net 4.0

hi i made a prism silverligght app with SL 4.0 and .net 4.0 , i published app and put it on in iis and make that as web application on iis , when i browse .svc page or other page i give "The page ...
1
vote
0answers
734 views

Frame Region Adapter and RegionContext in Silverlight 3/PRISM

I'm trying to use the new Silverlight 3 deep linking feature to try to drive a PRISM based application "from the outside", i.e, by using the browser url. The url would be used as a hint to know which ...
0
votes
0answers
27 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" ...
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
0answers
20 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 ...
0
votes
0answers
19 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 ...
0
votes
0answers
64 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
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
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 ...
0
votes
0answers
33 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
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 ...
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 ...

1 2 3 4 5 7