アプリケーションで MEF を使用しようとしていますが、インポートに問題があります。
[Import (typeof(IUserServices ))]
public IUserServices UserService { get; private set; }
これは機能せず、UserService は常に null です。
ただし、同じクラスで ImportContstructor を使用すると、完全に機能します。
[ImportingConstructor ]
public MainWindowVM(
IUIVisualizerService uiVisualizer,
IViewAwareStatus viewAwareStatus,
IMessageBoxService messageBoxService,
IManager mwManager,
TagItemModel tagModel,
ILibraryModel documentModel,
ILibraryServices libraryServices,
ILogServices logServices ,
IUserServices userServices)
誰でもこの問題で私を助けてくれますか? 私はすでに何時間も費やしていますが、解決策は見つかりませんでした。ありがとう!!!