0
votes
2answers
27 views
Best logging approach for composite app?
I am creating a Composite WPF (Prism) app with several different projects (Shell, modules, and so on). I am getting ready to implement logging, using Log4Net. It seems there are tw …
2
votes
1answer
24 views
Event Aggregation…What exactly is going on?
Hi,
I have often times wondered about it but now that I have encountered a piece of logic that incorporates it, I thought I should go ahead and get some help on deciphering the fu …
5
votes
5answers
1k views
Composite Guidance for WPF : MVVM vs MVP.
Hi,
I am confused. Maybe you can help me :)
I have been following the guidance of CAG and found the MVP pattern very natural to me.
Suppose I have a UI-ready Model (for example : …
0
votes
1answer
48 views
How to design prism EventAggregator?
Pattern of pub-sub events is that the
publisher should not know or care if
there are any subscribers out there,
nor should it care what the
subscribers do if they are th …
0
votes
5answers
68 views
Why a View is loading very slow for the first time in a Prism composite wpf application
Displaying a View inside a Region is about 5-10 seconds slow for the first time, and UI freezes for that period in my Prism Composite WPF application. In subsequent times View is l …
0
votes
5answers
534 views
Same module multiple times as TabItems
Here's my scenario:
1) Shell with 1 TabControl and 1 region called MenuRegion
2) MenuRegion contains Buttons for each of the available modules (applications).
I want to achieve th …
1
vote
1answer
41 views
What is the best method to load Views dynamically from a Navigation control in Prism
I've implemented navigation through my application using a Menu control which publish an event using EventAggregator on click of menu item. Something like as shown below,
this.ev …
0
votes
2answers
89 views
Enable Button and DelegateCommand
How can I disable a button until required data is entered in a TextBox?
I'm binding an Button to ICommand
public ICommand LoginCommand
{
get
{
…
0
votes
2answers
59 views
Integrating Modules with Application in Prism aka CompositeWpf
From MSDN:
It is likely that most of the views in your modules will not have to be displayed directly, but only after some action by the user. Depending on the style of applica …
1
vote
2answers
27 views
Composite Application Framework Equivalent in Java
Just wondering what the opposing framework in Java would be for creating modular GUI applications, with things like event aggregation, etc.
I know for Java there isn't a single de …
0
votes
2answers
44 views
How to resolve types registered in other Modules in Prism?
I'm registering few modules in my Prism application using UnityBootstrapper
protected override IModuleCatalog GetModuleCatalog()
{
var catalog = new ModuleCatalog();
catal …
0
votes
1answer
104 views
WPF Binding - There must be a better way than how I’m doing it!
Overview
I am using CompositeWPF to create an app using C#. This really should make a difference to the answer as my problem would exist outside of Prism.
I have an ItemsControl …
0
votes
1answer
26 views
Where to put Commands when injecting buttons into a ToolBar?
In my composite WPF application I am injecting some buttons into the shell's toolbar from a module. These buttons are injected using the region manager in the module's IModule Init …
1
vote
2answers
371 views
Prism2 Region Adapter for AvalonDock’s DocumentPane and DockingPane?
Hi.
Does anyone have sample code on how to create a Region Adapter for AvalonDock's DocumentPane and DockingPane?
0
votes
4answers
209 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 th …
