我有一些使用System.ComponentModel.Composition
作为IoC容器的Caliburn.Micro的经验。这次我想找点乐子并使用Niject。要设置 Calburn.Micro 引导程序,我有以下类
public class Bootstrapper : BootstrapperBase
{
private IKernel _kernel;
public Bootstrapper()
{
Initialize();
}
protected override void Configure()
{
_kernel = new StandardKernel();
_kernel.Bind<IWindowManager>().To<WindowManager>().InSingletonScope();
_kernel.Bind<IEventAggregator>().To<EventAggregator>().InSingletonScope();
_kernel.Bind<IMainWindowViewModel>().To<MainWindowViewModel>().InSingletonScope();
}
protected override object GetInstance(Type service, string key)
{
return _kernel.Get(service);
}
protected override IEnumerable<object> GetAllInstances(Type service)
{
return _kernel.GetAll(service);
}
protected override void OnStartup(object sender, StartupEventArgs suea)
{
base.OnStartup(sender, suea);
DisplayRootViewFor<IMainWindowViewModel>();
}
protected override void OnExit(object sender, EventArgs e)
{
_kernel.Dispose();
base.OnExit(sender, e);
}
}
这似乎被称为很好,但是当线
DisplayRootViewFor<IMainWindowViewModel>();
被击中,它似乎启动视图IMainWindowView正常,但是
public partial class MainWindowView : Window
{
public MainWindowView()
{
InitializeComponent();
}
}
public interface IMainWindowViewModel { }
和MainWindowViewModel
public class MainWindowViewModel : Conductor<IMainWindowViewModel>, IMainWindowViewModel { }
将IMainWindowView
的 XAML 作为
<Window x:Class="Mole.Replay.Framework.MainWindowView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:ViewModels="clr-namespace:Mole.Replay.Framework"
xmlns:local="clr-namespace:Mole.Replay.Framework"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Window.DataContext>
<ViewModels:MainWindowView/>
</Window.DataContext>
<Grid>
</Grid>
</Window>
ctor被一遍又一遍地调用并导致StackOverflow异常,没有明确的原因。此类型绑定在单一实例作用域中。为什么会发生这种情况,我错过了什么?
<Window.DataContext>
<ViewModels:MainWindowView/>
</Window.DataContext>
将 MainWindowView 的 DataContext 设置为 MainWindowView 的另一个实例是没有意义的,该实例也将尝试设置 DataContext 等,直到您遇到 StackOverflow 异常。
它应该是 DataContext 中的视图模型。我不知道caliburn.micro是否根据约定为视图创建了视图模型,但至少删除了当前的<Window.DataContext>
分配。
我不清楚为什么视图命名空间被别名为 ViewModels。如果实际视图模型位于同一命名空间中并且未自动解析,则分配视图模型
<Window.DataContext>
<ViewModels:MainWindowViewModel/>
</Window.DataContext>
DI 容器确实应该提供构造函数参数。使用它们来分配 DataContext:
public MainWindowView(IMainWindowViewModel vm)
{
InitializeComponent();
DataContext = vm;
}