Search code examples
c#sendkeys

Why C# Sendkeys not working for Control+L?


I'm using SendKeys.SendWait("+(l)"); for sending Ctrl+L, but it does not work. I tried '+l', '+(L)', +{L} but none of them are working. What may be the cause?


Solution

  • it's

    SendKeys.SendWait("^(l)")