Tagged Questions
2
votes
0answers
201 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: ...
0
votes
1answer
705 views
WPF DataGrid not showing scrollbars and running out of visible area
Like others I have a DataGrid that is not showing scrollbars. What I think is unique to my situation is that I do not see a StackPanel anywhere in the visual or logical tree. I am using WPF Inspector ...
0
votes
1answer
60 views
KeyNotFoundException when adding view to region
Using MEF and Prism. I have a pane marked with a region name:
<telerik:RadPaneGroup prism:RegionManager.RegionName="MyModuleRegion" />
Due to the nature of the software, this pane is not ...
1
vote
1answer
187 views
Views lifetime with view injection - PRISM
I`m learning the concepts of composite applications.
I created prism application using unity container.
One of my regions configed as content control - In this Region, I want show just single view.
...
1
vote
2answers
385 views
Prism : Shell regions view change not reflecting in xaml view
I am defining two regions in shell: MainRegion and ToggleRegion. The Toggle region contains a button on clicking on that button i want to change the region in Main Region.
Here is my xaml code for ...
0
votes
1answer
380 views
How prevent RegisterViewWithRegion adds new TabItems in PRISM?
OK
In my PRISM app I have 3 modules that each one have 3~6 views. in each module when Initialize method runs, after each RegisterViewWithRegion for each one of views, new TabItem appears in Shell's ...
1
vote
1answer
54 views
Prism and importing controls into regions
When using Prism to inject controls into regions,
Is it possible to inject a control that has been initialized with certain properties?
Problem is in using XAML I cant inherit from the control and ...
0
votes
1answer
327 views
PRISM: Use view-first approach or view-model first approach?
I'm trying to implement this scenario. In a listbox, show me several modules and when the user selects a module, must load the controller.
I supposed that the controller must have ModuleAContent, ...
0
votes
1answer
504 views
How to create nested regions?
I'm using PRISM and Unity Container.
I've got in my shell a TabControl with a region called MainRegion.
Then I have in another project called Common a view. This view contains a ContentRegion region ...
0
votes
1answer
75 views
Registring the regions
Using Prism, I've got a INFRASTRUCTURE project, where I've got a view with two regions:
ContentRegion
SidebarRegion
There's no problem in SidebarRegion, because this is a especif view of this ...
1
vote
2answers
2k views
PRISM: Nested regions in a region
The project is based on PRISM.
I've got a main region in the TabControl in the Shell.
<!-- Main Region : A tab control -->
<TabControl ...
0
votes
1answer
150 views
How to activate the next or last view of a region?
In my application, I'm using Prism and it loads three modules by discovery (Unity).
When the modules are loading, they register each View in "TopLeftRegion" region.
I'm trying to perform a ...
0
votes
1answer
368 views
How to get the view from a region in PRISM?
I'm using PRISM and I'm trying to get the view, but returns null the function GetView().
What am I doing wrong?
public void Initialize()
{
...
0
votes
1answer
174 views
Example of factory<ViewModel> in PRISM?
In PRISM, I've got two modules:
|_ ModuleA
| |_ViewA
| |_ViewModelA
| |_ModelA
|
|_ ModuleB
|_ViewB
|_ViewModelB
|_ModelB
And I want to have a factory design where you can choose the ...
0
votes
1answer
521 views
Prism - Region adapter for content control
I have Silverlight application using Prism and I am using a ContentControl as a region, something like below:
<ContentControl RegionManager.RegionName="Demo"/>
In some rare cases the ...
1
vote
3answers
729 views
Silverlight Prism: How to change the shell layout for a new page?
I am new to Silverlight/Prism, so not sure how a new layout page would be rendered. I've got the Shell working like a master page, but I want to have several pages in the application with a different ...
2
votes
1answer
606 views
Switching main view with PRISM
Does anyone know of good tutorial how to switch what module is viewed in main region if i would have a win client that consist of 5 regions, Toolbar, Sidebar (with menu), footer and main regions.
I ...
1
vote
1answer
470 views
Using Prism, how do I register my user control inside the unity boot strapper?
I am using Prism (Composite Application Framework) to build an application. I have my shell created and it has three regions( Main, menu, switchboard). I would like to load my switchboard region in ...
0
votes
1answer
252 views
Prism - Do I really need to use a Prism region manager?
I am building an application based on the WPF Application Framework (WAF). I think the framework has most of what I need but if there are any opportunities for making things easier for me then I'd ...
0
votes
1answer
513 views
How to get child container reference in View Model
I´m trying to share a Data Service (Entity Manager) wrapped in a Repository from a ViewModel (called 'AVM') in Module A to a ViewModel (called 'BVM') in Module B, and I can't get this working. We use ...
3
votes
4answers
4k views
Prism : Change the active view
I've got an little tool similar to the Windows Control Panel. The tool allows us to manage users, configure databases, manage scripts, etc.
The home page presents all the sub categories of the ...
1
vote
1answer
142 views
How to use parameterized region in Prism?
My shell has toolbar, navigation and main regions. While some menu item (foo) in toolbar selected, the navigation should be reloaded with parameter foo; and the main region should be reset with the ...
2
votes
1answer
563 views
Silverlight prism region events
In silverlight prism application I have a region (ContentControl) and would like to remove currently active view before adding another view. I tried to use region.PropertyChanged event but it doesn't ...
1
vote
2answers
2k views
Load Module Default Views In Region to Create Menu
I am builng an M-V-VM application with Dynamic Loading of modules at runtime.
Each of these Modules has a default view which individulally they show on the selected region when I go
...
0
votes
3answers
327 views
Silverlight PRISM getting the rendersize of a region
I am trying to get the render size of a region via the region manager. The reason for this is each time I add a view to the region I want to make sure it will visually fit, I can get the dimensions of ...
3
votes
1answer
3k views
WPF Prism - To use Scoped Regions or not?
I have a WPF project based upon Prism Feb 2009 release set up as:
Shell exposes a single ContentControl as "MainRegion"
Another view (user control) defined in the Infrastructure project called ...
0
votes
4answers
4k views
Add Composite WPF Region at runtime
Ok, here's my simple scenario. I've got collection of strings that I'm binding to a TabControl as a proof of concept. As I add strings I want a new tab with the region name as the header and a ...