I\'ve been trying to inject the modules from my ModuleCatalog into my Shell\'s ViewModel but I\'m not having much luck...
There are a lot of questions on S.O. about JavaFX vs. Silverlight vs. AIR, and now Prism is going to be released.
I\'m in some sort of confusion: at one hand Microsoft architects and surrounding web community promote MVVM pattern for building WPF apps, 开发者_JS百科but from the other hand in Prism patterns and pr
I have come accross two ways of initializing Views and ViewModels in WPF CAL MVVM. 1 - Seems to be more popular. Requires you to resolve the ViewModel to automatically resolve the View. The ViewModel
I previously posted a question on sharing resources across assemblies using Themes/generic.xaml and the ComponentResourceKey markup extension. The solution works nicely, but it requres all of the shar
using Silverlight & Prism. i create a new scoped region inside a TabControl like so: IRegionManager regionManager = tabControl.Add(viewRegions, UNIQUEID, true);
I\'m working on a Prism Composite application where I load different views into a region.I need to make sure that the view I\'m loading is resized to the same height as the region. Each view is a user
In my application, I instantiate a new instance of my view in its associated viewmodel\'s constructor. I also have some events to subscribe to with an event aggregator.
Is it possible to create a command behavior using Prism\'s CommandBehaviorBase class for Silverlight\'s grid?I know that it is only 开发者_StackOverflow中文版intended for actual controls, so I was won
I am creating sort of a \"Navigation panel\" (which is actually an ItemControl) for SL and using Regions to allow each module to add his link to the panel.