I have a borderless window and created the chrome but I need to disable the 'Alt+Space' shortcut. Any thoughts?

link|improve this question

Keep in mind that it's very bad practise to disable system shortcuts. I would personally uninstall an application that tried to mess with Alt-Space. Just an FYI. – Richard Szalay Jun 2 '10 at 13:20
Thanks Richard but I was handling system shortcut to implement it myself. Same keys, added functionality. – Brad Jun 3 '10 at 19:00
feedback

1 Answer

up vote 2 down vote accepted

I'm not very good with WPF, but after some messing around, this seems to be on the right track. Just throw it in your Window code-behind:

    protected override void OnKeyDown(KeyEventArgs e)
    {
        if (Keyboard.Modifiers == ModifierKeys.Alt && e.SystemKey == Key.Space)
        {
            e.Handled = true;
        }
        else
        {
            base.OnKeyDown(e);
        }
    }
link|improve this answer
Thanks Cory. I just spent 6 hours sizing and moving a borderless form with KeyDown (arrows & Ctrl, etc). You'd think this would occur to me?!? :-) Thanks again. – Brad Feb 17 '10 at 0:05
You're welcome, Brad. Happy coding! – Cory Feb 17 '10 at 2:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.