I am working on shortcuts in C#. I succeed implementing Ctrl, Alt and Shift with SendKeys.
Like this;
CtrlCtrl + CC:
System.Windows.Forms.SendKeys.SendWait("^c");
System.Windows.Forms.SendKeys.SendWait("^c");
or AltAlt + F4F4:
System.Windows.Forms.SendKeys.SendWait("%{F4}");
System.Windows.Forms.SendKeys.SendWait("%{F4}");
But I can't send "Windows Key" with SendKeys. I tried ex: WinWin + EE : .SendWait("#e").SendWait("#e") but it's not working. What should I use instead of "#"?
Thanks.