使用SetScrollInfo API滚动

时间:2012-12-20 15:32:40

标签: c# winforms winapi richtextbox

我正在使用SetScrollInfo API滚动我的richtextbox(winforms)中的文本。我有一个计时器,每个刻度我需要滚动一个像素。 一切都在短文本上完美运作。在较长的文本上,滚动方法滚动超过1个像素。我认为它与滚动条的有限部分有关。我认为最多有65536个零件,但也许我错了。 调用GetScrollInfo()

后,si.nMax = 65535时出现问题

在较长的文本上是否有任何溶剂可以滚动一个像素?

// Scrolls a given textbox. handle: an handle to our textbox. pixels: number of pixels to scroll.
    void scroll(IntPtr handle, int pixels)
    {
        mScrollsCounter++;
        IntPtr ptrLparam = new IntPtr(0);
        IntPtr ptrWparam;
        // Get current scroller posion

        SCROLLINFO si = new SCROLLINFO();
        si.cbSize = (uint)Marshal.SizeOf(si);
        si.fMask = (uint)ScrollInfoMask.SIF_ALL;
        GetScrollInfo(handle, (int)ScrollBarDirection.SB_VERT, ref si);

        // Increase posion by pixles
        if (si.nPos < (si.nMax - si.nPage))
            si.nPos += pixels;
        else
        {
            ptrWparam = new IntPtr(SB_ENDSCROLL);
            t.Enabled = false;
            SendMessage(handle, WM_VSCROLL, ptrWparam, ptrLparam);
        }

        // Reposition scroller
        SetScrollInfo(handle, (int)ScrollBarDirection.SB_VERT, ref si, true);

        // Send a WM_VSCROLL scroll message using SB_THUMBTRACK as wParam
        // SB_THUMBTRACK: low-order word of wParam, si.nPos high-order word of wParam
        ptrWparam = new IntPtr(SB_THUMBTRACK + 0x10000 * si.nPos);
        SendMessage(handle, WM_VSCROLL, ptrWparam, ptrLparam);
    } 
struct SCROLLINFO
        {
            public uint cbSize;
            public uint fMask;
            public int nMin;
            public int nMax;
            public uint nPage;
            public int nPos;
            public int nTrackPos;
        }

1 个答案:

答案 0 :(得分:0)

不使用WM_VSCROLL中编码的像素数(您可能会将scroll()函数作为pixels参数传递),而是使用nTrackPos成员SCROLLINFO结构。