How to Send Ctrl+Shift+F1 to an application using send keys
问题 I want to send Ctrl + Shift + F1 combination of keys to an application. But when I try to send the keys i am getting an error,the error is, ^+F1 is not a valid key. The code I am using is: System.Windows.Forms.SendKeys.Send("{^+F1}"); 回答1: Looking at the documentation you need to have your braces around just the F1. Try this to see if it works System.Windows.Forms.SendKeys.Send("^+{F1}"); From above link by enclosing the ^ and + in the braces you are sending the literal character. The plus