C# - The differences between SendKeys.Send and SendKeys.SendWait

SendKeys.Send: Sends keystrokes to the active application. That‘s all.

SendKeys.SendWait: Sends the given keys to the active application, and then waits for the messages to be processed.

So, use
SendWait to send keystrokes or combinations of keystrokes to the active application and wait for the keystroke messages to be processed. You can use this method to send keystrokes to an application and wait for any processes that are started by the keystrokes
to be completed. This can be important if the other application must finish before your application can continue.

For example, if your webpage need to install a xxx.msi to continue, when the webpage pops up a bottom bar to install xxx.msi, you should use SendKeys.SendWait to trigger the installation, not
SendKeys.Send.

时间: 2024-11-03 03:27:41

C# - The differences between SendKeys.Send and SendKeys.SendWait的相关文章

SendKeys.Send()的使用 转

使用SendKeys将键击和组合键击发送到活动应用程序.此类无法实例化.若要发送一个键击给某个类并立即继续程序流,请使用Send.若要等待键击启动的任何进程,请使用SendWait. 每个键都由一个或多个字符表示.若要指定单个键盘字符,请使用该字符本身.例如,若要表示字母 A,请将字符串“A”传递给方法.若要表示多个字符,请将各个附加字符追加到它之前的字符的后面.若要表示字母A.B和C,请将参数指定为“ABC”. 加号(+).插入符号(^).百分号(%).波浪号(~)以及圆括号() 对 Send

黄聪:发送键盘指令System.Windows.Forms.SendKeys.Send

若要指定在按键(如 Enter 或 Tab)时不显示的字符,以及表示操作而不表示字符的键,请使用下表中的代码: 键 代码 Backspace {BACKSPACE}.{BS} 或 {BKSP} Break {BREAK} Caps Lock {CAPSLOCK} Del 或 Delete {DELETE} 或 {DEL} 向下键 {DOWN} End {END} Enter {ENTER} 或 ~ Esc {ESC} Help {HELP} Home {HOME} Ins 或 Insert {I

在WebBrowser中通过模拟键盘鼠标操控网页中的文件上传控件

在WebBrowser中通过模拟键盘鼠标操控网页中的文件上传控件 引言 这两天沉迷了Google SketchUp,刚刚玩够,一时兴起,研究了一下WebBrowser. 我在<WebBrowser控件使用技巧分享>一文中曾谈到过"我现在可以通过WebBrowser实现对各种Html元素的操控,唯独无法控制Html的上传控件",出于安全原因,IE没有对上传控件提供操控支持,这使得我们没法像控制其他控件一样用简单的代码进行赋值. 比较实际的解决方案就是模拟操作了,下面我就将演示

DataGridView回车焦点横向移动

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)        {            if (keyData == Keys.Enter)    //监听回车事件             {                if (dataGridViewX1.IsCurrentCellInEditMode)   //如果当前单元格处于编辑模式                 {              

winform 上传

public class ImitateSelectFile { public void Select(HtmlElement htmlEle, string fileFullPath) { htmlEle.Focus(); SendKeys.Send("{Tab}"); SendKeys.Send(" "); DelayAndOperateDialog(fileFullPath); } Random rnd = new Random(); void DelayAn

小熊鼠标键盘模拟工具 使用说明 及核心代码

旧版本有些问题,请下载新版本 最版版本一载地址 很多人问的问题是怎么模拟向QQ群发送信息的 其实标题就说了是模拟鼠标,按键. 具体哪些按键呢,可能有些人习惯鼠标操作不太清楚,其实也很简单.enter键 next键.配合鼠标使用就可以了. 其实就是这么简单了. 核心代码: using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using Syste

sendkeys用法详解

将一个或多个按键消息发送到活动窗口,就如同在键盘上进行输入一样. 语法 SendKeys string[, wait] SendKeys 语句的语法具有以下几个命名参数: 部分 描述   string 必需的.字符串表达式,指定要发送的按键消息.   Wait   可选的.指定等待方式的 [email protected] 值.如果为 False(缺省值),则控件在按键发送出去之后立刻返回到过程.如果为 True,则按键消息必须在控件返回到过程之前加以处理. 说明 每个按键由一个或多个字符表示.

C#模拟键盘鼠标事件 SendKeys 的特殊键代码表(转)

使用 SendKeys 将键击和组合键击发送到活动应用程序.此类无法实例化.若要发送一个键击给某个类并立即继续程序流,请使用 Send.若要等待键击启动的任何进程,请使用 SendWait. 每个键都由一个或多个字符表示.若要指定单个键盘字符,请使用该字符本身.例如,若要表示字母 A,请将字符串“A”传递给方法.若要表示多个字符,请将各个附加字符追加到它之前的字符的后面.若要表示字母 A.B 和 C,请将参数指定为“ABC”. 加号 (+).插入符号 (^).百分号 (%).波浪号 (~) 以及

C# 模拟键盘操作--SendKey(),SendKeys()

模拟键盘输入就是使用以下2个语法实现的.SendKeys.Send(string keys);  //模拟汉字(文本)输入SendKeys.SendWait(string keys); //模拟按键输入 先了解一下2个语法的用法吧! 稍后贴出代码看看大家能不能看懂哦/... (1)每个按键由一个或多个字符表示.为了指定单一键盘字符,必须按字符本身的键.例如,为了表示字母 A,可以用 "A" 作为 string.为了表示多个字符,就必须在字符后面直接加上另一个字符.例如,要表示 A.B