1

导入不起作用。

我有一个UserProfileService可以看到导出的类AggregateCatalogUserProfileService在基础设施项目中。我RelayCommand也在基础设施项目中的类中导入它。我经历过类似的帖子,但无法解决。将不胜感激任何帮助。这是代码:

[Export(typeof(IUserProfileService))]
[PartCreationPolicy(CreationPolicy.Shared)]
public class UserProfileService : IUserProfileService
{
    ...
} 

public class RelayCommand<T> : ICommand
{
    [Import]
    private IUserProfileService UserProfileService { get; set; }
    ...
}

谢谢,伊玛德。

4

0 回答 0