Winform, How to suppress the winform error dialog?
I have working on C# 4.0 winform project with Xulrunner and VLC web plugin,
Something the VLC will cause the winform crash, and show something like :
But i have a software monitor to restart the application when crash.
So how can i suppress this dialog? because something it will on top of the screen, even the 开发者_开发技巧application is restart.
Handle the AppDomain.UnhandledException
event.
精彩评论