FlowDocument 上的 MouseDown 事件向下滚动 FlowDocumentScrollViewer

MouseDown event on FlowDocument scrolls down FlowDocumentScrollViewer

我有一个 WPF 窗口,其中有一个 FlowDocumentScrollViewer 和一个 FlowDocument 作为它的子项。在 FlowDocument 元素内部,当然,我有网格、文本框等,它们都可以正常工作,但每当我单击它们时,滚动条就会一直向下滚动。代码如下:

<FlowDocumentScrollViewer Grid.Row="1" Grid.Column="1">
    <FlowDocument x:Name="flowDoc" PagePadding="0">
        <Section>
            <BlockUIContainer>
                <Border BorderBrush="Red" BorderThickness="2">
                    <Grid x:Name="masterGrid" Height="1500">
                        <!--window structure here-->
                    </Grid>
                </Border>
            </BlockUIContainer>
        </Section>
    </FlowDocument>
</FlowDocumentScrollViewer>

这种行为是不可取的,但我也不知道是什么原因造成的。我该如何防止它发生?

好吧,不是解决原因(目前还不清楚)而是问题本身,我设法通过删除 FlowDocumentSection 让它停止一直向下滚动,并且将 FlowDocumentScrollViewer 切换为 ScrollViewer。对于我的需要,这是可能的并且足够了。