How can I ignore/block/remove the Ctrl-L keyboard shortcut from a WPF RichTextBox?

Right-now, this is bound to the AlignLeft EditingCommand. I'd like to use this keyboard shortcut for something else (delete line) in the RichTextBox.

I'm currently handling the keyDown event, but Ctrl-L never makes it through. In other words, I can respond to Ctrl-H, for example, no problem, but Ctrl-L is already gobbled up by the control.

    private void richTextBoxMain_KeyDown (object sender, KeyEventArgs e)
    {

        if ( Keyboard.IsKeyDown(Key.LeftCtrl))
        {
            if (e.Key == Key.L)
            {
                 // never gets here.
            }
        }
    }
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Add this in your page load method (or somewhere suitable)

KeyBinding keyBinding = new KeyBinding(ApplicationCommands.NotACommand, Key.L, 
                                                         ModifierKeys.Control);
richTextBoxMain.InputBindings.Add(keyBinding);

That will prevent CTRL + L from invoking the command it usually does (due to the NotACommand enum). The code you currently have in your KeyDown method should now work.

link|improve this answer
feedback

You can simply handle the CommandBinding on the RichtextBox control like the following (code behind or xaml):

richTextBoxMain.CommandBindings.Add(new CommandBinding(EditingCommands.ToggleBold, NullOnCommand, NullOnCanExecuteCommand));


private static void NullOnCommand(object sender, ExecutedRoutedEventArgs e)
{
    e.Handled = true;
}

private static void NullOnCanExecuteCommand(object sender, CanExecuteRoutedEventArgs e)
{
    e.CanExecute = false;
    e.Handled = true;
}

Hope that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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