Hi,
I am new to Prism WPF world, have one simple question.
I have registered my view and viewmodel in the module initialise method like below
var navigatorView = new NavigationMenu.View.NavigationBarView();
navigatorView.DataContext = m_Container.Resolve<NavigationMenuViewModel>();
var regionManager = m_Container.Resolve<IRegionManager>();
regionManager.Regions[RegionNames.NavigationMenuRegion].Add(navigatorView);
Now if I want to modify my ViewModel then the only way i am able to do that is through ViewModel class only, is there any other way where I can update the viewmodel object registered with the unity container. Also i would like to know how can i get the object instance registered with the unity container.
Thanks and Regards, Harry