This has been mentioned quite a few times.: the shift key does not display the same as other modifiers.
I could be barking up the wrong tree, but KeyPress.cs has:
public bool HasModifierPressed
{
get
{
return InterceptKeyEventArgs.AltPressed
|| InterceptKeyEventArgs.ControlPressed
|| WinkeyPressed;
There's no .ShiftPressed
Could this be the problem?
Unfortunately, my programming knowledge is very limited. I was able to build the package after making the change and adding interceptKeyEventArgs.Shiftpressed to KeyPress.cs - and it seemed to work, but there were a ton of other bugs with the compiled package - most likely because I didn't do it right!
This has been mentioned quite a few times.: the shift key does not display the same as other modifiers.
I could be barking up the wrong tree, but KeyPress.cs has:
There's no .ShiftPressed
Could this be the problem?
Unfortunately, my programming knowledge is very limited. I was able to build the package after making the change and adding interceptKeyEventArgs.Shiftpressed to KeyPress.cs - and it seemed to work, but there were a ton of other bugs with the compiled package - most likely because I didn't do it right!