1. 首页
  2. 数据库
  3. 其它
  4. C#判断某程序是否运行的方法

C#判断某程序是否运行的方法

上传者: 2021-01-16 14:11:15上传 PDF文件 33.57KB 热度 12次
本文实例讲述了C#判断某程序是否运行的方法,分享给大家供大家参考。 具体实现方法如下: [DllImport("user32.dll")] private static extern bool SetForegroundWindow(IntPtr hWnd); [DllImport("user32.dll")] private static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow); [DllImport("user32.dll")] private static extern bool IsIconic(IntPtr hW
用户评论