我在这里在线找到了StackOverflow本身的代码: How can I sync the scrolling of two multiline textboxes?
它工作正常,但我想按比例滚动。这意味着,如果我有两个RichTextBoxes
,RichTextBox1
有10行,而RichTextBox2
有100行,那么当我在RichTextBox1
中滚动时,它将在{{ 1}}每滚动1行,如果我在RichTextBox2
中滚动,它将在RichTextBox2
中每10行滚动RichTextBox1
中的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