_regionManager.RegisterViewWithRegion("ContentRegion", () => _container.Resolve<LoginUserControl>()); // работает _container.RegisterTypeForNavigation<LoginUserControl>(); _regionManager.RequestNavigate("ContentRegion", "LoginUserControl"); // не работает 

In general, registration takes place with RegisterViewWithRegion and shows nothing with RequestNavigate

  • I think the snag here is _container.RegisterTypeForNavigation <LoginUserControl> (); Besides, what does it mean not working? Show a reproducible example - Anton Shakalo

0