Exemplo n.º 1
0
        public void FakePanel_Scroll(object sender, ScrollEventArgs e)
        {
            int pos = NativeMethodsManager.GetScrollPos(fakePanel.Handle, (int)NativeMethodsManager.ScrollBarType.SbVert);

            pos <<= 16;

            this.VScroll -= CustomRichTextBox_VScroll;
            uint par = (uint)NativeMethodsManager.ScrollBarCommands.SB_THUMBPOSITION | (uint)pos;

            NativeMethodsManager.SendMessage(this.Handle, (int)NativeMethodsManager.Message.WM_VSCROLL, new IntPtr(par), new IntPtr(0));
            this.VScroll += CustomRichTextBox_VScroll;
        }