public ViewModelLocator()
 {
     _container = Startup.BootStrap();
 }
        public void ShowWindow <T>() where T : Window
        {
            _container = Startup.BootStrap();

            _container.Resolve <T>().Show();
        }