Caliburn Micro和Castle Windsor Bootstrapper语言 - 在Bootstrapper中注册



我使用Castle Windsor bootstrapper在我的WPF应用程序。我尝试注册视图模型类到Windsor容器。

我有所有的视图模型类在命名空间sample.viewmodels

所以我试了这个:

        _windsorContainer.Register(AllTypes.FromAssembly(GetType().Assembly)
                                       .Where(x => x.Namespace.EndsWith("ViewModels"))
                                       .Configure(x => x.LifeStyle.Is(LifestyleType.Singleton)));

或者这样注册视图模型类到容器:

    _windsorContainer.Register(AllTypes.FromAssembly(GetType().Assembly)
                                   .Where(x => x.Namespace.Equals("Sample.ViewModels"))
                                   .Configure(x => x.LifeStyle.Is(LifestyleType.Singleton)));

这种方法不起作用。我不知道为什么。MainViewModel / ChildViewModel属性为null

如果我用这个样式,效果会很好。

        ////Shell
        _windsorContainer.Register(
            Component.For<IShellViewModel>()
                .ImplementedBy<ShellViewModel>()
                .LifeStyle.Is(LifestyleType.Singleton));
        //Main screen
        _windsorContainer.Register(
            Component.For<IMainViewModel>()
                .ImplementedBy<MainViewModel>()
                .LifeStyle.Is(LifestyleType.Singleton));
        //Child screen
        _windsorContainer.Register(
            Component.For<IChildViewModel>()
                .ImplementedBy<ChildViewModel>()
                .LifeStyle.Is(LifestyleType.Singleton));

第一种情况是什么?

这里我有视图模型:

namespace Sample.ViewModels
{
    public interface IShellViewModel
    {}
    public class ShellViewModel : Conductor<IScreen>.Collection.AllActive,
        IShellViewModel
    {
        public IMainViewModel MainViewModel { get; set; }
        public IChildViewModel ChildViewModel { get; set; }
        protected override void OnInitialize()
        {
            DisplayName = "Castle Windsor Boostraper";
            base.OnInitialize();
        }
    }
    public interface IMainViewModel : IScreen
    {
        void SayHello();
    }
    public class MainViewModel : Screen, IMainViewModel
    {
        public void SayHello()
        {
            MessageBox.Show("Hello from MainViewModel");
        }
    }
    public interface IChildViewModel : IScreen
    {
        void SayHello();
    }
    public class ChildViewModel : Screen, IChildViewModel
    {
        public void SayHello()
        {
            MessageBox.Show("Hello from ChildViewModel");
        }
    }
}

编辑:

I little update registration part:

        _windsorContainer.Register(AllTypes.FromAssembly(GetType().Assembly)
                                       .Pick()
                                       .WithService.DefaultInterface()
                                       .Configure(x => x.LifeStyle.Is(LifestyleType.Singleton)));

它工作,但我不确定这是否是最好的方法。

我认为你想做这样的事情来注册你的viewmodels在Castle window

_windsorContainer.Register(AllTypes.FromThisAssembly()
    .Where(x => x.Namespace.EndsWith("ViewModels"))
    .WithService.AllInterfaces()
    .WithService.Self()
    .If(s => !s.IsAbstract)
    .Configure(x => x.LifeStyle.Is(LifestyleType.Singleton)));

但是我想知道为什么你注册你的视图模型为单例?我会将它们注册为transient,这样您就可以在应用程序中为同一个视图实例化多个不同的视图模型。我还为我的视图模型使用了一个标记接口,所以我不必依赖于以"viewmodels"结尾的名称空间中的视图模型。

_windsorContainer.Register(Classes
    .FromThisAssembly()
    .BasedOn<IViewModelBase>()
    .WithServiceAllInterfaces()
    .WithServiceSelf()
    .LifestyleTransient()

在第一个示例中,您只将具体类型注册为单例,第二个示例将相关接口与实现关联起来。由于您的属性将模型作为接口公开,因此第一个代码部分将无法满足这些属性。

相关内容

  • 没有找到相关文章

最新更新