登录
首页 » C# » SendKeys

SendKeys

于 2010-05-25 发布 文件大小:41KB
0 144
下载积分: 1 下载次数: 156

代码说明:

  C#使用SendKeys发送组合键,向指定窗口。(C# using SendKeys to send key combinations, such as the specified window.)

文件列表:

SendKeys发送组合键
..................\WindowsApplication1
..................\...................\bin
..................\...................\...\Debug
..................\...................\...\.....\WindowsApplication1.exe,24576,2010-03-24
..................\...................\...\.....\WindowsApplication1.pdb,32256,2010-03-24
..................\...................\...\.....\WindowsApplication1.vshost.exe,5632,2005-11-11
..................\...................\Form1.cs,832,2010-03-24
..................\...................\Form1.Designer.cs,1474,2010-03-24
..................\...................\Form1.resx,5814,2010-03-24
..................\...................\GlobalHook.cs,6235,2010-03-24
..................\...................\KeyboardHook.cs,4277,2010-03-24
..................\...................\obj
..................\...................\...\Debug
..................\...................\...\.....\TempPE
..................\...................\...\.....\WindowsApplication1.csproj.GenerateResource.Cache,842,2010-03-24
..................\...................\...\.....\WindowsApplication1.exe,24576,2010-03-24
..................\...................\...\.....\WindowsApplication1.Form1.resources,180,2010-03-24
..................\...................\...\.....\WindowsApplication1.pdb,32256,2010-03-24
..................\...................\...\.....\WindowsApplication1.Properties.Resources.resources,180,2010-03-24
..................\...................\...\WindowsApplication1.csproj.FileList.txt,352,2010-03-24
..................\...................\Program.cs,478,2010-03-24
..................\...................\Properties
..................\...................\..........\AssemblyInfo.cs,1210,2010-03-24
..................\...................\..........\Resources.Designer.cs,2892,2010-03-24
..................\...................\..........\Resources.resx,5612,2010-03-24
..................\...................\..........\Settings.Designer.cs,1102,2010-03-24
..................\...................\..........\Settings.settings,249,2010-03-24
..................\...................\WindowsApplication1.csproj,3329,2010-03-24
..................\WindowsApplication1.sln,946,2010-03-24
..................\WindowsApplication1.suo,18432,2010-03-24

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

发表评论

0 个回复

  • 8051
    Free books abouth programming the 8051 microcontroller
    2012-05-06 09:51:42下载
    积分:1
  • TMS320F28335
    TMS320F28335 全套开发例程(TMS320F28335 full suit examples code)
    2013-09-25 10:49:00下载
    积分:1
  • DSP2812_LM3037
    说明:  DSP2812控制的LM3037程序,采用串行通信模式,时序比较复杂,请读者参照DATASHEET。(DSP2812 the LM3037 control procedures, the use of serial communication mode, timing is rather complicated, please refer to the reader DATASHEET.)
    2009-07-28 11:27:38下载
    积分:1
  • WndlessTimerDesign
    基于VS.net2005的多媒体定时器编程源码,用于测试多个定时器的发送数据精度,以及交互协调。编写了专门的定时器类,可以实例化多个对象。(Based on the multimedia timer VS.net2005 programming source code, for testing a number of the sending data accuracy timer, as well as interactive co-ordination. The preparation of a special type of timer, you can instantiate multiple objects.)
    2009-07-14 08:14:08下载
    积分:1
  • 04299003
    有關於發光二極體利用光子晶體設計分析之文章(Has on the light-emitting diode using photonic crystal design and analysis of the article)
    2008-07-04 17:20:43下载
    积分:1
  • Csendmail
    这是一个实现用C语言发送电子邮件的小程序,可以把截获的键盘记录发送给监控的主机。(This is a realization of C language small program to send email, you can send intercepted keyloggers monitored host.)
    2013-07-28 19:00:36下载
    积分:1
  • C-programme-language
    C programme language
    2015-10-28 06:10:19下载
    积分:1
  • ichat
    一个真正SERVER PUSH的聊天室,很不错,C语言所写,最可惜的是已经被编译过了,但是界面全部被独立出来了的,可以自行更改,只是不能研究程序的内部结构…… (a real SERVER PUSH chat rooms, very good, C language written, it is most unfortunate that has been compiled, but the interface were all independent of and can make changes, but the procedures are not able to study the internal structure of ...)
    2004-09-27 22:28:08下载
    积分:1
  • OLED12864设计方案0.96OLED
    ED12864显示屏设计方案(原理图 PCB BOM表 程序) 一、简介 OLED 屏幕作为一种新型的显示技术,其自身可以发光,亮度,对比度高,功耗低,在当下备受追捧。而在我们正常的显示调整参数过程中,我们越来越多的使用这种屏幕。我们使用的一般是分辨率为 128×64 ,屏幕尺寸为 0.96 寸。由于其较小的尺寸和比较高的分辨率,让它有着很好的显示效果和便携性。 目前我们经常使用的 OLED 屏幕一般有两种接口,IIC 或者 SPI ,两者使用的通信协议稍有不同,这里以 SPI 协议的 OLED 屏幕为例,带来它的使用方法。 模块接口定义   二、原理 如何控制每个像素的显示 这个屏幕的像素矩阵的划分是比较特殊的, 整个屏幕水平方向划分为8个page, 垂直方向则是按像素划分为128 column. 每个page-column包含8个像素, 通过一个十六进制数(其实就是一个字节, 8个bit)来控制, 每个bit控制一个像素。 即储存寄存器每个存储点的0/1控制(映射)一个像素点的亮/灭。 如果我们要在左上角显示一个亮点, 需要发送0x01(16进制的1)到数据地址, 例如: Wire.beginTransmission(0x3C); // 控制指令 Wire.write(0x40); // 写地址 Wire.write(0x01); // 写数据 Wire.endTransmission(); // 结束   三、设计方案 原理图: PCB:                              程序: 51单片机程序 STM32程序  
    2021-10-21 00:31:04下载
    积分:1
  • PStechnology
    详细介绍了ps的基础技巧,让你从小白成为ps高手迈出了第一步。(Details of the ps of basic skills, so that you become ps from the white master the first step.)
    2013-12-28 20:40:28下载
    积分:1
  • 696516资源总数
  • 106428会员总数
  • 7今日下载