gpt4 book ai didi

c# - 带有编码文本的自动热键

转载 作者:行者123 更新时间:2023-11-30 17:27:58 25 4
gpt4 key购买 nike

我想做一个将粘贴的自动热键脚本:

{ get; set; }

对于 C#

这是可能的还是它不知道如何处理空格,{, ;?

我已经尝试了以下方法,但它不起作用:

    ^NumPad3::
SendInput, { get; set; }
return

最佳答案

逗号、分号和其他字符(例如 {}^!+#)在 AHK 中具有特殊含义,需要进行转义才能以不同于正常情况的方式进行解释。

F1:: SendInput, {{} get`; set`; {}}

https://autohotkey.com/docs/commands/_EscapeChar.htm#Escape_Sequences

发送此类文本的最简单方法是

F2::
Send {Raw}
(
{ get; set; }
)
return

F3::
Send {Blind}{Text} ; [v1.1.27+]
(
{ get; set; }
)
return

https://autohotkey.com/docs/commands/Send.htm

关于c# - 带有编码文本的自动热键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53965301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com