9

我已经在互联网上广泛搜索并看到了很多这样的问题,但我还没有看到真正的答案。

我有一个包含大量文本的富文本框控件。它在此控件中有一些法律信息。默认情况下,“接受”按钮被禁用。如果 v-scroll bar 的位置在底部,我想检测滚动事件。如果它位于底部,请启用该按钮。

我将如何检测当前的垂直滚动条位置?

谢谢你!

编辑 我正在使用 WinForms (.Net 4.0)

4

3 回答 3

18

这应该让你接近你正在寻找的东西。这个类继承自 RichTextBox 并使用一些 pinvoking 来确定滚动位置。它添加了一个事件ScrolledToBottom,如果用户使用滚动条滚动或使用键盘,则会触发该事件。

public class RTFScrolledBottom : RichTextBox {
  public event EventHandler ScrolledToBottom;

  private const int WM_VSCROLL = 0x115;
  private const int WM_MOUSEWHEEL = 0x20A;
  private const int WM_USER = 0x400;
  private const int SB_VERT = 1;
  private const int EM_SETSCROLLPOS = WM_USER + 222;
  private const int EM_GETSCROLLPOS = WM_USER + 221;

  [DllImport("user32.dll")]
  private static extern bool GetScrollRange(IntPtr hWnd, int nBar, out int lpMinPos, out int lpMaxPos);

  [DllImport("user32.dll")]
  private static extern IntPtr SendMessage(IntPtr hWnd, Int32 wMsg, Int32 wParam, ref Point lParam);

  public bool IsAtMaxScroll() {
    int minScroll;
    int maxScroll;
    GetScrollRange(this.Handle, SB_VERT, out minScroll, out maxScroll);
    Point rtfPoint = Point.Empty;
    SendMessage(this.Handle, EM_GETSCROLLPOS, 0, ref rtfPoint);

    return (rtfPoint.Y + this.ClientSize.Height >= maxScroll);
  }

  protected virtual void OnScrolledToBottom(EventArgs e) {
    if (ScrolledToBottom != null)
      ScrolledToBottom(this, e);
  }

  protected override void OnKeyUp(KeyEventArgs e) {
    if (IsAtMaxScroll())
      OnScrolledToBottom(EventArgs.Empty);

    base.OnKeyUp(e);
  }

  protected override void WndProc(ref Message m) {
    if (m.Msg == WM_VSCROLL || m.Msg == WM_MOUSEWHEEL) {
      if (IsAtMaxScroll())
        OnScrolledToBottom(EventArgs.Empty);
    }

    base.WndProc(ref m);
  }

}

这就是它的使用方法:

public Form1() {
  InitializeComponent();
  rtfScrolledBottom1.ScrolledToBottom += rtfScrolledBottom1_ScrolledToBottom;
}

private void rtfScrolledBottom1_ScrolledToBottom(object sender, EventArgs e) {
  acceptButton.Enabled = true;
}

根据需要进行调整。

于 2012-04-20T00:32:23.813 回答
6

以下在我的一个解决方案中效果很好:

Point P = new Point(rtbDocument.Width, rtbDocument.Height);
int CharIndex = rtbDocument.GetCharIndexFromPosition(P);

if (rtbDocument.TextLength - 1 == CharIndex)
{
   btnAccept.Enabled = true;
}
于 2016-07-15T11:05:52.267 回答
5

问题如何获取 RichTextBox 的滚动位置? 可能会有所帮助,请查看此功能

   richTextBox1.GetPositionFromCharIndex(0);
于 2012-04-19T23:41:51.987 回答