导入不起作用。
我有一个UserProfileService
可以看到导出的类AggregateCatalog
。UserProfileService
在基础设施项目中。我RelayCommand
也在基础设施项目中的类中导入它。我经历过类似的帖子,但无法解决。将不胜感激任何帮助。这是代码:
[Export(typeof(IUserProfileService))]
[PartCreationPolicy(CreationPolicy.Shared)]
public class UserProfileService : IUserProfileService
{
...
}
public class RelayCommand<T> : ICommand
{
[Import]
private IUserProfileService UserProfileService { get; set; }
...
}
谢谢,伊玛德。