我刚开始使用 Caliburn.Micro。
我正在尝试引导我的简单示例解决方案,将 ShellView(用户控件)放在 Test.App 程序集中,将 ShellViewModel 放在 Test.ViewModel 程序集中。
我得到的是一个带有以下文本的窗口:“找不到 Caliburn.Test.ViewModel.ShellViewModel 的视图”。
但是,如果我将 ViewModel 移动到 .App 程序集,它会完美运行。
这是 Caliburn.Micro.Test 程序集中的引导程序(可执行文件):
namespace Caliburn.Micro.Test
{
public class AppBootstrapper : BootstrapperBase
{
SimpleContainer container;
public AppBootstrapper()
{
this.Start();
}
protected override void Configure()
{
container = new SimpleContainer();
this.container.Singleton<IWindowManager, WindowManager>();
this.container.Singleton<IEventAggregator, EventAggregator>();
this.container.PerRequest<IShell, ShellViewModel>();
}
protected override object GetInstance(Type service, string key)
{
var instance = this.container.GetInstance(service, key);
if (instance != null)
return instance;
throw new InvalidOperationException("Could not locate any instances.");
}
protected override IEnumerable<object> GetAllInstances(Type service)
{
return this.container.GetAllInstances(service);
}
protected override void BuildUp(object instance)
{
this.container.BuildUp(instance);
}
protected override void OnStartup(object sender, System.Windows.StartupEventArgs e)
{
this.DisplayRootViewFor<IShell>();
}
protected override IEnumerable<System.Reflection.Assembly> SelectAssemblies()
{
var assemblies = new List<Assembly>()
{
Assembly.GetExecutingAssembly(),
Assembly.Load("Caliburn.Micro.Test.ViewModel"),
};
return assemblies;
}
}
}
这是我在 Caliburn.Micro.Test.ViewModel 程序集(类库)中的 ViewModel:
namespace Caliburn.Micro.Test.ViewModel
{
public interface IShell
{
}
public class ShellViewModel : IShell
{
}
}
你能帮我解决我的问题吗?谢谢!:D