What is the best way to handle an unhandled exception in a WPF application?
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.
|
|
|
You can use XAML (App.xaml):
Code Behind (App.xaml.cs/vb:
Read up more here. Always do the correct amount of error handling in the first place though. Don't just let errors slip into this method. |
|||
|
|
|
try/catch/finally block around the code and handle the exception with error handling. |
|||||
|