我已经尝试了一段时间,但遇到了一些问题。我有一个可以动态加载1个或多个DLL的项目,但我无法使视图绑定正常工作。
我已经重写了SelectAssemblies方法,例如:
protected override IEnumerable<Assembly> SelectAssemblies()
{
string[] AppFolders = Directory.GetDirectories(Config.AppsFolder);
List<Assembly> assemblies = new List<Assembly>();
assemblies.Add(Assembly.GetExecutingAssembly());
foreach (string f in AppFolders)
{
Assembly ass = Directory.GetFiles(f, "*.dll", SearchOption.AllDirectories).Select(Assembly.LoadFrom).SingleOrDefault();
if (ass != null)
{
assemblies.Add(ass);
}
}
Apps = assemblies;
return assemblies;
}
这按预期工作,然后我有了一种在按钮单击上运行的方法,该方法可以:
public void OpenApp(string appName)
{
//AppName should be the same as the dll.
string assName = string.Format("TabletApp.{0}", appName);
Assembly ass = AppBootstrapper.Apps.SingleOrDefault(x => x.GetAssemblyName() == assName);
if (ass != null)
{
dynamic vm = ass.CreateInstance(string.Format("TabletApp.{0}.ViewModels.{0}ViewModel", appName));
IoC.Get<IWindowManager>().ShowDialog(vm);
}
}
这样可以找到合适的viewmodel,但是在加载ExampleViewModel时出现错误“无法为'ExampleView'找到合同”。自从我进行了此更改以来,我还必须为基础装配体中的每个视图添加[Export(typeof(view))]。
有人知道我做错了吗?
最佳答案
事实证明,我没有做错任何事情,在此过程中,我已将caliburn.micro更新为3.0.2。事实证明,它们所做的微小更改成为重大的重大更新。除了在引导程序中指出需要更改的GetInstance之外,我不会在这里进行全面介绍。
protected override object GetInstance(Type service, string key)
{
// Skip trying to instantiate views since MEF will throw an exception
if (typeof(UIElement).IsAssignableFrom(service))
return null;
var contract = string.IsNullOrEmpty(key) ? AttributedModelServices.GetContractName(service) : key;
var exports = container.GetExportedValues<object>(contract);
if (exports.Any())
return exports.First();
throw new Exception(string.Format("Could not locate any instances of contract {0}.", contract));
}
请查看以下链接以获取更多详细信息。
https://github.com/Caliburn-Micro/Caliburn.Micro/pull/339
关于c# - Caliburn Micro-在单独的DLL中查看和查看模型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41430269/