public class NativeWIN32 { public NativeWIN32() { } /* ------- using WIN32 Windows API in a C# application ------- */ [DllImport("user32.dll", CharSet = CharSet.Auto)] static public extern IntPtr GetForegroundWindow(); // [StructLayout(LayoutKin…
using System; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Windows.Forms; namespace drmaple { class HotKey { //如果函数执行成功,返回值不为0. //如果函数执行失败,返回值为0.要得到扩展错误信息,调用GetLastError. [DllImport("user32.dll", SetLastEr…
前言 上篇文章我提供了一种方案可以供我们捕获单线程程序中的所有未处理异常.但是如果程序是多线程,那么新增线程出现了异常上个方案就无能为力了.本着方案总比问题多的态度,我再给大家提供一种新的方案,供大家参考. 处理多线程程序的全局异常demo 好了下面直接上代码: using System; using System.Security.Permissions; using System.Threading; using System.Windows.Forms; namespace TestMan…