In my WPF app, I have created a Window which contains a FlowDocumentScrollViewer, amongst other controls.

I have created a command binding for my Window to the Print command, with an Executed handler that runs some custom logic, and ends up printing the content of the FlowDocumentScrollViewer.

All works well, but I am having one problem.

If the user clicks within the FlowDocumentScrollViewer, and then presses Ctrl + P, it executes the Print command binding of the FlowDocumentScrollViewer itself, not that of my Window. And so my custom logic is not executed, and the printout is not as it should be.

How can I disable the FlowDocumentScrollViewer's Print command binding, and ensure that pressing Ctrl + P runs my Windows's Print command binding in all cases?

link|improve this question

feedback

2 Answers

A quick and dirty way is to hook into the FlowDocumentScrollViewer's PreviewKeyDown event and set it to handled if Ctrl + P is pressed. Here is what the code would look like:

    void fds_PreviewKeyDown(object sender, System.Windows.Input.KeyEventArgs e)
    {
        if (e.Key == Key.P && Keyboard.Modifiers == ModifierKeys.Control)
            e.Handled = true;
    }
link|improve this answer
Cool that would indeed work - I've used that technique for other situations in the past! But I got it working a slightly cleaner way (see my answer). Thanks. – Ross May 14 '11 at 11:05
feedback
up vote 0 down vote accepted

I got it working by removing the event handler from my window, and hooking it up directly to the FlowDocumentScrollViwer instead:

<FlowDocumentScrollViewer x:Name="MyFlowDocumentScrollViewer">
    <FlowDocumentScrollViewer.CommandBindings>
        <CommandBinding Command="Print" Executed="Print_Executed" />
    </FlowDocumentScrollViewer.CommandBindings>
</FlowDocumentScrollViewer>

I then had to bind the CommandTarget of any other print command controls (e.g. my toolbar button) directly to the FlowDocumentScrollViewer.

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.