In Silverlight and PRISM, what is the good way to open a popup child 开发者_运维知识库window which is in one Module by passing a parameter from a ViewModel in different Module.Create a common interfac
How can I get the original DataContext of the UserControl inside of a ContextMenu. The code below, you can see that there is a Button in the DataTemplate, which binds correctly. However, when trying
A typ开发者_如何学Goical Silverlight Application that uses the Prism Framework consists of Modules and a Shell project.Each module can have it\'s own App.xaml.My question is what is the best practice
I am currently getting started with the .NET Prism framework to develop a WPF application. One thing that I\'m unable to determine is the best way to achieve asynchronous calls to a WCF service, or a
I am swapping out the standard Unity container in Prism 4 and run into a pr开发者_StackOverflow中文版oblem when my modules are initializing. Before I used to get an IUnityContainer injected and this t
We are using Prism and is an excellent framework for composition and modularity. However, I haven\'t seen a good story around Blendability with Prism composition. When you have a code that has Regions
I am working on a large billing application for one the Telecom companies using WPF4, the application contains more than 300 screen, and it will contain more than 17 modules, that is why I choose to f
I\'v got the following code : public class MyModule: IModule { private IRegionManager mRegionManager { get; set; }
I have the following code in one of my Modules : public class MyModule : IModule { private IRegionManager mRegionManager { get; set; }
I have written a CanExecute method for the DelegateCommand. CanExecute is not being re-evaluated as other commands which inherites from a CommandBase, that looks like this.