New Post: MVVM Event Aggregator and WCF Service. Not updating The UI
RaisePropertyChanged is being hit but the not notifying the view the state changes this.RaisePropertyChanged(() => this.PickableCollection); Yes the OnLogged event is also being hit, i can see...
View ArticleNew Post: MVVM Event Aggregator and WCF Service. Not updating The UI
My ViewModel namespace Chameleon.Navigation.ViewModel { public class TopMenuViewModel : NotificationObject { IEventAggregator _eventAggregator; Dispatcher _dispatcher; public...
View ArticleNew Post: MVVM Event Aggregator and WCF Service. Not updating The UI
My User Control namespace Chameleon.Navigation.Views { [Export("TopMenuView")] public partial class TopMenuView : UserControl, INavigationAware { [ImportingConstructor] public...
View ArticleNew Post: PRISM 4 + MVVM + WPF + InteractionRequest for Dialogs with details
Hi, Based on my understanding using Interaction Requests would be a recommended approach to interact with users in an MVVM based application, as it will allow you to preserve a clean separation of...
View ArticleNew Post: INavigationAware
Hi, what i would like to do is: public class Controller1 public void OnNavigatedTo(NavigationContext navigationContext) { var region =...
View ArticleNew Post: MVVM Event Aggregator and WCF Service. Not updating The UI
Hi, I tried to reproduce the behavior you are mentioning based on the code snippets you provided and so far I couldn't re-create it. I tried using both approaches, directly calling the OnLoggedIn...
View ArticleNew Post: Design considerations for nested region
Hi, In that case I believe you could find the ClearChildViewsRegionBehavior provided in Prism 4.1 useful. By using this behavior, when removing a view from a region, if that view has a nested region...
View ArticleNew Post: Design considerations for nested region
OH that worked perfectly! Thanks. I had tried to implement my own version of that because I didn't realize it was built into 4.1, and it didn't work. But switching to the built-in version fixed it....
View ArticleNew Post: INavigationAware
Hi Peter, I believe I am not understanding your scenario completely. Based on my understanding, when implementing the IRegionMemberLifetime interface in a view (or view model) the KeepAlive property...
View ArticleNew Post: INavigationAware
Hi, <Then, if you "navigate away" from your views in that type of region, the views would still be active and the RegionMemberLifetimeBehavior will not try to check their KeepAlive property. > I...
View ArticleUpdated Release: Prism for .NET 4.5 (Oct 31, 2012)
This is a release does not include any functionality changes over Prism 4.1 Desktop. These assemblies target .NET 4.5. These assemblies also were compiled against updated dependencies: Unity 3.0 and...
View ArticleReleased: Prism for .NET 4.5 (Oct 31, 2012)
This is a release does not include any functionality changes over Prism 4.1 Desktop. These assemblies target .NET 4.5. These assemblies also were compiled against updated dependencies: Unity 3.0 and...
View ArticleUpdated Release: Prism for .NET 4.5 (Oct 31, 2012)
This is a release does not include any functionality changes over Prism 4.1 Desktop. These assemblies target .NET 4.5. These assemblies also were compiled against updated dependencies: Unity 3.0 and...
View ArticleNew Post: Globlal Resources Assembly
Hi,I'm trying to place some Resources in a separate assembly and use it globally in all my modules.Here I post a sample piece and sample source code which will point to my exact problem.Project Name...
View ArticleNew Post: Windows 8, WPF VNext, SL5, Prism?
uli_laegeler wrote:On the actual Roadmap http://msdn.microsoft.com/en-us/practices/default Prism for WinRT is dropped. Has anyone further information? Interesting question.I would also like if anybody...
View ArticleNew Post: "LocalRegionManager" and NonShared views
Hi there,I am working on a WPF Prism application. In certain secondary windows, I need to create a different menu (not the one of the Shell).The menu of the dependent window should compose according to...
View ArticleNew Post: Globlal Resources Assembly
Hi,After analyzing your sample, I found that in order to avoid the error you mentioned you will have to change the Build Action property of the xaml files where your ResourceDictionary are defined. For...
View ArticleNew Post: Windows 8, WPF VNext, SL5, Prism?
Time to give up with Microsoft and move to the other technology stacks. The fact we are not getting any clear answers says it all. I think they will find out the hard way – that it takes heaven and...
View ArticleNew Post: "LocalRegionManager" and NonShared views
Hi,Based on my understanding, the problem you are experiencing could be related to the fact that each Window instance has its own different regions.Basically, when you create the Window for the first...
View ArticleNew Post: Globlal Resources Assembly
Hi Mr Adamiyou were right,at first the resources were defined as page. and during playing around to find the solution I changed them.The problem was about not finding the assembly and it was easier...
View Article