winforms 如何在powershell中发送ctrl +`

nxowjjhe  于 2023-06-24  发布在  Shell
关注(0)|答案(2)|浏览(114)

我想用powershell发送按键ctrl + `(不是~),但似乎无法让它工作。
我试过以下方法,但都不好。

[System.Windows.Forms.SendKeys]::SendWait("^{`}")
[System.Windows.Forms.SendKeys]::SendWait("^{\`}")
bis0qfac

bis0qfac1#

你试过这个吗?

[System.Windows.Forms.SendKeys]::SendWait('^`')
7cjasjjr

7cjasjjr2#

在双引号字符串中,backroom用作转义字符。或者使用单引号字符串将其双出。反斜杠在这里没有任何用处,因为PowerShell不使用反斜杠进行转义,除非在正则表达式中。

相关问题