Tagged Questions

2
votes
5answers
1k views

PRISM + MEF — Can't get regions to work properly

a bit new to Prismv4 and MEF. I went through the QuickStarts and tried to combine two of them together, but I can't seem to get it working. First, I got a Bootstrapper to load the Shell Window. ...
2
votes
2answers
256 views

Prism, Regions, Magic strings and refactoring : am I missing something here?

To build a composite application view in my application, with different regions, untill now, I've always used content presenter and used DataBinding to set its content. If I wanted to change its ...
0
votes
0answers
46 views

PRISM opening Modal above modal!

It took me a while to read through the posts describing how to create a PopupRegion to show modal windows as in the StockTrader application. Now i need to sail across the second hurdle of Showing ...
0
votes
2answers
324 views

WPF switch between regions with toggle button

I have a view, that when loaded contains a toolbar at the top, and two regions underneath. I am currently using a grid, so: row 0 contains the toolbar row 1 contains region1 and row 2 contains ...
0
votes
3answers
1k views

Prism RegionAdapter - Removing then Adding View

I have a prism/wpf/mef solution that contains an AvalonDock. I created a RegionAdapterBase<Pane> class that handles creating and removing the Panes from AvalonDock. Heres the problem I'm ...
0
votes
1answer
79 views

How to avoid coupling when using regions in Composite WPF

I have an application designed using Microsoft's Composite Application Library. My shell has several regions defined so that I can inject content from separate modules. I'm looking for a design ...
0
votes
2answers
555 views

Nested menu regions in Composite WPF application

Is it possible to have nested regions in a Composite WPF application? I want modules to be able to inject new menus, and also be able to inject menu items into an existing menu. Using the following ...