blindmeis
blindmeis

Reputation: 22445

MEF WPF - Cancel Application.Current.Shutdown() by plugins

are there any ways to cancel

Application.Current.Shutdown();  

background: i played with mef a little bit and put some plugins to my main app. if any plugin call

Application.Current.Shutdown();

my main app shutdown too and i got no chance to cancel this. are there any ways?

Upvotes: 4

Views: 2309

Answers (1)

Wallstreet Programmer
Wallstreet Programmer

Reputation: 9687

It don't look like it. So instead of having your plugins do a shutdown, instead have them call some method in your application class that will handle the shutdown request for them. See below link also for more info.

http://www.skylark-software.com/2009/10/canceling-application-shutdown-in-wpf.html

Upvotes: 3

Related Questions