如何在两个保持比例的RichTextBox中同步滚动?

时间:2019-04-13 06:41:23

标签: c# .net scroll richtextbox

我在这里在线找到了StackOverflow本身的代码: How can I sync the scrolling of two multiline textboxes?

它工作正常,但我想按比例滚动。这意味着,如果我有两个RichTextBoxesRichTextBox1有10行,而RichTextBox2有100行,那么当我在RichTextBox1中滚动时,它将在{{ 1}}每滚动1行,如果我在RichTextBox2中滚动,它将在RichTextBox2中每10行滚动RichTextBox1中的1行。

我认为这是可能的。

1 个答案:

答案 0 :(得分:1)

当然有更好的方法(无需干预选择),但这似乎可行:

class myRTB : RichTextBox
{
    public myRTB()
    {
        this.Multiline = true;
        this.ScrollBars = RichTextBoxScrollBars.Vertical;
    }

    public myRTB Buddy { get; set; }

    private static bool scrolling;   // In case buddy tries to scroll us
    protected override void WndProc(ref Message m)
    {
        base.WndProc(ref m);
        // Trap WM_VSCROLL message and pass to buddy
        if (m.Msg == 0x115 && !scrolling && Buddy != null && Buddy.IsHandleCreated)
        {
            scrolling = true;
            synchTopLineRel(Buddy);
            scrolling = false;
        }
    }

    void synchTopLineRel(RichTextBox rtb)
    {
        int i0 = GetCharIndexFromPosition(Point.Empty);
        int i1 = GetLineFromCharIndex(i0);
        int i2 = (int)(i1 * Buddy.Lines.Length / Lines.Length);
        // the rest scrolls to line # i2..:
        int bss = Buddy.SelectionStart;
        int bsl = Buddy.SelectionLength;
        Buddy.SelectionStart = Buddy.GetFirstCharIndexFromLine(i2);
        Buddy.ScrollToCaret();
        Buddy.SelectionStart = bss;
        Buddy.SelectionLength = bsl;
    }
}

请注意,它没有错误检查,将进行非常简单的计算。不适用于:

  • 具有不同字体的实时出价
  • 大小不同的实时出价

尤其是如果您需要编写ScelectionChanged事件的代码,您将更喜欢用对SetScrollPos的适当调用来代替滚动。可能的example