2010年9月5日
摘要: API声明: /// /// 获取指定窗口的设备场景/// /// 将获取其设备场景的窗口的句柄。若为0,则要获取整个屏幕的DC/// 指定窗口的设备场景句柄,出错则为0[DllImport("user32.dll")]public static extern IntPtr GetDC(IntPt... 阅读全文
posted @ 2010-09-05 23:40 wl666lw 阅读(842) 评论(0) 推荐(0) 编辑
摘要: 开门见山,不废话了, 直接举例说明一下: 比如发送ALT + F 以下是 用spy++截取的消息内容 000310DC P WM_SYSKEYDOWN nVirtKey:VK_MENU cRepeat:1 ScanCode:38 fExtended:0 fAltDown:1 fRepeat:0 f... 阅读全文
posted @ 2010-09-05 23:32 wl666lw 阅读(4326) 评论(4) 推荐(3) 编辑
摘要: 如何截取非前端窗体的截图 首先说一下PrintWindow这个API的使用 public static Bitmap GetWindowCapture(IntPtr hWnd) { IntPtr hscrdc = GetWindowDC(hWnd); RECT windowRect = new R... 阅读全文
posted @ 2010-09-05 22:21 wl666lw 阅读(1118) 评论(0) 推荐(0) 编辑
摘要: 首先对项目添加系统引用 System.Drawing; System.Drawing.Design; System.Windows.Forms; 获取指定网页并转换成图片的类: using System; using System.Collections.Generic; using System.... 阅读全文
posted @ 2010-09-05 22:17 wl666lw 阅读(371) 评论(0) 推荐(0) 编辑