WPF ScrollViewer滚动到FlowDocument的元素

时间:2014-08-15 20:32:41

标签: c# wpf offset scrollviewer flowdocument

我正在开发聊天应用程序。有一个包含richtextbox的scrollviewer,它包含一个包含块中段落的flowdocument。 现在,当添加新消息时,滚动查看器会正确向下滚动其内容(当滚动条位于底部时自动滚动)。当文件向下滚动到底部时,flowdocument总是最多100个段落。 (当收到新邮件时,将删除顶部的旧段落。)

我想补充的是当我将滚动查看器向上滚动到顶部时,我想加载较旧的消息(Facebook样式)。当我滚动到顶部旧邮件正确加载,但我想在加载旧邮件之前最顶层的段落仍将显示在顶部。为此,我想我需要计算该段落的新位置,并将scrollviewer的垂直偏移设置为该段落的Y坐标。 (加载新消息后,滚动查看器仍然会向上滚动到顶部。)

但是如何在插入旧消息后检测该段落的位置?

1 个答案:

答案 0 :(得分:0)

不幸的是BringIntoView()并不适用于此。我认为原因可能是段落在FlowDocument中而不是直接在ScrollViewer中。而且我不知道你是否可以告诉(或者它的工作原理如此......)BringIntoView将ScrollViewer滚动到该段落位于顶部的位置。

其他链接解决方案并不好,因为Paragraph对象无法转换为FrameworkElement,只能转换为TranslatePoint方法。

我设法做的是:因为我知道在FlowDocument中插入了多少行,所以我总结了插入段落的大小,所以我得到了我需要滚动ScrollViewer的段落的点。然后我用该参数调用sw.ScrollToVerticalOffset并在那里滚动很好。 :)

这是完整的代码,我希望它可能对某些人有所帮助。此函数订阅了ScrollViewer的ScrollChanged事件。

但请注意,此解决方案只能正确显示在一行中的段落!

    bool StopLoading = false; // This is required to ensure that only the specified amount of messages will be loaded at once.
    // If we scroll upper the messages, then don't scroll. If we scroll to bottom, scroll the messages
    private void MessageScrollChanged(object sender, ScrollChangedEventArgs e)
    {
        var obj = sender as ScrollViewer;
        // The scrollbar is at the bottom
        if (obj.VerticalOffset == obj.ScrollableHeight)
        {
            // The while loop removes loaded messages when we have scrolled to the bottom
            Channel ch = (Channel)((ScrollViewer)sender).Tag;
            while (ch.TheFlowDocument.Blocks.Count > GlobalManager.MaxMessagesDisplayed)
            {
                ch.TheFlowDocument.Blocks.Remove(ch.TheFlowDocument.Blocks.FirstBlock);
                if (ch.MessagesLoadedFrom + 1 + GlobalManager.MaxMessagesDisplayed < GlobalManager.MaxMessagesInMemory)
                    ch.MessagesLoadedFrom++;
            }

            // The automatic scroll when the scrollbar is at the bottom
            obj.ScrollToEnd();
        }
        // The scrollbar is at the top
        else if (obj.VerticalOffset == 0) // Load older messages
        {
            if (!StopLoading)
            {
                Channel ch = (Channel)((ScrollViewer)sender).Tag;
                if (ch.MessagesLoadedFrom != 0)
                {
                    int loaded = LoadMessages(ch, GlobalManager.NumOfOldMessagesToBeLoaded);
                    double plus = first.Padding.Top + first.Padding.Bottom + first.Margin.Bottom + first.Margin.Top; // Since all of my paragraphs have the same Margin and Padding I can do this
                    double sum = 0;
                    Block temp = ch.TheFlowDocument.Blocks.FirstBlock;
                    for (int i = 0; i < loaded; i++)
                    {
                        sum += temp.FontSize + plus;
                        temp = temp.NextBlock;
                        if (temp == null)
                            break;
                    }

                    obj.ScrollToVerticalOffset(sum);
                }
                StopLoading = true;
            }
        }
        // The scrollbar is not at the top and not at the bottom. We can enable loading older messages
        else
        {
            StopLoading = false;
        }
        e.Handled = true;
    }