Hi
I have a strange problem, that i can't figure it out..
I am building a composite WPF application using prism. for that i am using UnityBootstrapper for using the UnityContainer, and using Region Manager that passed threw all modules to render the UI parts to the main shell.
everything is working good.
But, when i'm replacing all my WPF base controls to DEVExpress controls.
i notice that everytime the "region manager" instance is passed to each Module constructor, it comes empty..
I asked few people that told me build an adapter to every 3rd pary control, i did so, and still the region manager comes empty.
But what is more strange, that despite it seems that the region manager don't register nothing to the regions, All the views are injected correctly to the views in the shell..??!!
(the _regionManager remains empty even after i register view to it: _instance = _container.Resolve<InstanceBody>(); _regionManager.RegisterViewWithRegion("Body", () => _instance); )
I have a strange problem, that i can't figure it out..
I am building a composite WPF application using prism. for that i am using UnityBootstrapper for using the UnityContainer, and using Region Manager that passed threw all modules to render the UI parts to the main shell.
everything is working good.
But, when i'm replacing all my WPF base controls to DEVExpress controls.
i notice that everytime the "region manager" instance is passed to each Module constructor, it comes empty..
I asked few people that told me build an adapter to every 3rd pary control, i did so, and still the region manager comes empty.
But what is more strange, that despite it seems that the region manager don't register nothing to the regions, All the views are injected correctly to the views in the shell..??!!
(the _regionManager remains empty even after i register view to it: _instance = _container.Resolve<InstanceBody>(); _regionManager.RegisterViewWithRegion("Body", () => _instance); )