Okay, I solved the issue.

I kept what I have with the KeyUp event handler, but then I declared a KeyDown handler and set e.Handled = true and e.SuppressKeyPress = true for each of the specified keys. I suppose I had to suppress the keys at the first event to fire, KeyDown, even though I only want to process the KeyUp event for those keys.

So thanks for the suggestions... it works now.