I'm trying to implement the interface IPartImportsSatisfiedNotification but unfortunately it does not work. This bug I have only the prism. I can't understand why this is happening.

Test Application

public partial class App : Application, IPartImportsSatisfiedNotification
{
    [Import]
    public IPlugin plugin { get; set; }

    protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);
        var bootstrapper = new Bootstrapper();
        bootstrapper.Run();
    }

    public void OnImportsSatisfied() // This code is not called
    {
        var x = plugin;
    }
}
link|improve this question

0% accept rate
Are you running in release mode? Can it be possible that the compiler ignores any call to OnImportSatisfied since there is no logic inside? – Polity Oct 9 '11 at 10:06
No I am working in debug mode. I added method to plugin.TestMetod();. But unfortunately that does not work. – Mitosha Oct 9 '11 at 10:53
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.