我可以使用SendKeys.Send()发送ctrl + c(复制)命令吗?

时间:2015-10-11 20:22:36

标签: c# .net

我尝试使用import requests url = 'https://site/request' params = { 'param1': 'value1', 'param2': 'value2', } post_response = requests.post(url, json=params) if post_response.ok: the_page = post_response.content # do your stuff here print post_response.content # this will give you the message regardless of failure print post_response.status_code # this will give you the status code of the request post_response.raise_for_status() # this will throw an error if the status is not 200 发送复制命令,但通过这种方式系统工作不稳定:打印' c'输入字段的字符,ctrl处于keydown状态,而不是keyup。 (见,keydown是最后一次) Spy++ for SendKeys.Send()

我还尝试使用PostMessage模拟复制命令,但它没有工作。

SendKeys.Send("^{c}");

请告诉我,如何解决问题,也许我做错了什么。

0 个答案:

没有答案