New Post: Windows 8, WPF VNext, SL5, Prism?
Hi Blaine and Brianany news on this subject? Is this the correct blog address to keep an eye on? http://blogs.msdn.com/b/blaine/Felix
View ArticleNew Post: Modular Navigation Question
Cheers for response DC. Can I question this part?"Then, when you need to go to the MainViewagain, you can simply perform another navigation request to the MainView. Like this, the modules do not need...
View ArticleNew Post: Modular Navigation Question
Hi,Based on my understanding in some scenarios modules may depend on other modules, as they could require components provided by other modules to function, without knowing their specific...
View ArticleNew Post: How to create a separate XAP file using Prism/MEFBootstrapper for a...
I originally posted this on the new Silverlight forum, but was told that I should post my question here. I am using Silverlight 5, but only saw a Silverlight4/Prism 4 topic, which is where I have...
View ArticleNew Post: How to create a separate XAP file using Prism/MEFBootstrapper for a...
Hi,I believe the are several approaches that could be followed to obtain the functionality you are describing.For example, a possible approach could be to move the WizardChildWindowto a module (for...
View ArticleNew Post: PRISM Update ViewModel after Resolve
We are creating a Metro style application with PRISM and WPF. Several tiles (different modules) are shown in a dashboard.Since we are using the tiles on different dashboards and since we are navigating...
View ArticleNew Post: PRISM Update ViewModel after Resolve
I am a little bit further. I have made a property in my ViewModel:(ObservableHelper is a class I copied from Cinch framework)static PropertyChangedEventArgs walletChangeArgs =...
View ArticleNew Post: PRISM Update ViewModel after Resolve
Hi,Have your tried using the eventaggregator in prism? You could used that to publish information which your other tiles can subscribe to and refresh themselves.
View ArticleNew Post: PRISM Update ViewModel after Resolve
I have used it for other things and I didn't think about doing it for this problem. Thanks for the tip, it might be as simple as this.
View ArticleNew Post: PRISM Update ViewModel after Resolve
Cool!On 29 Nov 2012 18:12, "MultiDev" <notifications@codeplex.com> wrote:From: MultiDevI have used it for other things and I didn't think about doing it for this problem. Thanks for the tip, it...
View ArticleNew Post: How to create a separate XAP file using Prism/MEFBootstrapper for a...
Hello,I have spent some time reading articles/references and reviewing your advice. What you said about exporting the two classes as type ChildWindow makes sense. For now I will use Show() for the...
View ArticleNew Post: How to create a separate XAP file using Prism/MEFBootstrapper for a...
Hello gan_s,After I import IModuleManager, do I use something similar to the following code to load the module on demand?ModuleManager.LoadModule("SharedFormsModule" );ModuleManager.LoadModuleCompleted...
View ArticleNew Post: How to create a separate XAP file using Prism/MEFBootstrapper for a...
Thats right Warren. You need to call the LoadModule with the module name defined in your modulescatalog.xaml. Once your module is downloaded you would use regionManager.RequestNavigate to load the view...
View ArticleCommented Feature: Classes not designed for inheritence [3958]
<p>Please review all the code and determine for each class if it was designed for inheritence. If so, check the (protected) constructors (perhaps create a protected default ctor) and what methods...
View ArticleNew Post: How to create a separate XAP file using Prism/MEFBootstrapper for a...
Hello,Thanks much for your assistance. I have made some progress today. I struggled for quite a while with a module not found error where VS reported that the named module could not be found. However,...
View ArticleNew Post: IPartImportsSatisfiedNotification - INavigationAware
Hi List,i just playing around with IPartImportsSatisfiedNotificationWhat's about this usage:public async void OnImportsSatisfied(){Employees = await this.employeeService.EmployeLookupListAsync();}is...
View ArticleNew Post: How to create a separate XAP file using Prism/MEFBootstrapper for a...
The only way to get the instances of the childwindos is by importing them. What are you trying to achieve anyway?Regarding debugging info on xap/mef erros you need to check the error property on the...
View Article