登录
首页 » C# » C#屏幕截图 桌面截图 指定句柄窗口截图 附源码

C#屏幕截图 桌面截图 指定句柄窗口截图 附源码

于 2013-04-01 发布
0 242
下载积分: 1 下载次数: 0

代码说明:

C#屏幕截图 桌面截图 指定句柄窗口截图 附源码

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 663705
    Produce a real random number 产生真正的随机数(Produce a real random number produces real random numbers)
    2018-12-26 07:58:01下载
    积分:1
  • RELEASEPDLL
    将dll文件加入文件资源之后调用函数释放,实现了将dll文件打包(Dll files will be added to the file after the call function to release resources to achieve the dll file is packaged)
    2013-09-12 21:02:42下载
    积分:1
  • regedit-hive
    1. 内存中操作Hive, 而非操作磁盘hive. 比同等的Hive解析工具(eg.狙剑)速度快. 2. 操作方式和windows自带的regedit.exe相同, 而同等的工具仅列出hive对应的项,一般用户不知如何使用 3. 支持整个子键(Key) / 键值(Values) 的删除,增加,修改,重命名. 而同等的工具考虑到安全性,没有加入对Key的删除/增加 操作 4. 没有特殊情况的话,能发现一切注册表隐藏信息,解析hive的都能做到. 5. 查找功能没有暴搜hive数据结构,换用常规API. (1. Memory operation Hive, rather than the operation of the disk hive. Than analytical tools Hive same (eg. sword spy) speed. 2. Operation of regedit.exe and windows bring the same tools and the same list only hive the corresponding item, the general users do not know how to use 3. in support of the entire sub-key (Key)/key (Values) to delete, add, modify, rename. and the same tools to take into account security, do not add the delete Key/increase in operation 4. the absence of exceptional circumstances, then, to discover all the hidden registry information, are able to resolve the hive. 5. Find hive found no storm data structure, for conventional API.)
    2009-07-08 10:17:51下载
    积分:1
  • lwindow运行原理
    了解window运行机制,介绍window运行原理,如何通过句柄操作(Understanding the window operating mechanism)
    2017-08-12 16:08:10下载
    积分:1
  • EDIDVIEW
    读取注册表中关于显示器edid的记录信息。(Get the EDID information from Reg.)
    2011-12-28 19:45:54下载
    积分:1
  • Demo
    相当实用的windows设备管理程序,windows注册表相关信息(Very useful windows device manager, windows registry information)
    2012-08-07 20:15:08下载
    积分:1
  • C# 实现进度条 倒着进度 以及竖着进度显示
    用C# 实现进度条
    2014-08-22下载
    积分:1
  • managedwinapi,封装好的windows API 含超牛句柄工具
    managedwinapi,封装好的windows API,超级实用
    2013-05-26下载
    积分:1
  • Regedit
    vc 编辑注册表信息Regedit的程序源码,值得一看!(vc edit the registry Regedit program source code, worth a visit!)
    2011-07-01 22:03:37下载
    积分:1
  • C# 实现进守护功能 通用于所有进,非法关闭和关机依然适用 附完整源码下载
    1. 下载本实例源码                      2. 安装注意事项 在配置档中配置你要守护的应用程序,应用程序之间用逗号隔开: 01 02 03   04     09   10 该项目是Windows服务,直接打开“CocoWatcher.exe”会报错,如图1所示:运行该守护程序需安装Windows服务,点击批处理文档“安装.bat”即可,“安装.bat”具体内容如下: 1 "%cd%InstallUtil.exe" "%cd%CocoWatcher.exe" 2 net start "CocoWatcher" 3 pause 如果你想卸载该守护程序,点击批处理文档“卸载.bat”,“卸载.bat”具体内容如下: 1 net stop "CocoWatcher" 2 "%cd%InstallUtil.exe" "%cd%CocoWatcher.exe"  -u 3 taskkill /f /im CocoWatcher.exe 4 pause 3. 需求分析 用户指定要守护的应用程序(数量不限),该应用程序不仅包括exe可执行文件,还包括诸如jpg、txt等所有能双击打开执行的应用程序。用户设定好要守护的应用程序后,关闭应用程序(包括合法和非法关闭),该应用程序要能立即重启打开。当电脑重启时,要守护的应用程序也能自动全部打开。 4. 详细设计 要实现上述需求,首先要提供一个配置档,让用户能随意配置要守护的应用程序。那么,该配置档要配置应用程序的什么信息呢?答案:应用程序的全路径。 好,我们已经知道了要守护的应用程序的全路径,接下来怎样完成守护任务呢?首先,我们应该打开任务管理器,查看一下正在运行的有哪些进程,然后逐一读取出这些进程的全路径,与要守护的应用程序的全路径比对,如果一致,说明要守护的应用程序已开启了,此时要分配一条线程监控该进程句柄,当该进程句柄返回信息,说明该进程已关闭,此时释放进程句柄内存,并重启该进程。如果遍历任务管理进程列表中所有进程,没有找到与要守护的应用程序的全路径一致的进程,说明要守护的应用程序尚未打开,此时要启动该应用程序,然后转入监控流程。 值得注意的是,一定要额外分配线程去监控要守护的应用程序,为什么?因为如果你用主线程(入口函数线程)去执行监控任务,会被长期阻塞,直到进程退出才会被激活,这样就无法运行后续程序。况且,监控程序要实现持续监控,要使用死循环,如果主线程进入死循环,就无法监控其他要守护的进程了。
    2013-07-19下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载