Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a possibility to register a global uncaught exception handler in a Microsoft Surface application?

share|improve this question

1 Answer

up vote 1 down vote accepted

Surface apps are just WPF apps... see WPF global exception handler

share|improve this answer
So i use this in OnApplicationActivated? Application.DispatcherUnhandledException – RoflcoptrException Feb 22 '11 at 14:30
1  
No, OnApplicationActivated can get called multiple times. Open up you App.xaml.cs file and put it in "protected override void OnStartup(StartupEventArgs e)" – Robert Levy Feb 22 '11 at 15:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.