富文本框内的控件向下或向上滚动

本文关键字:滚动 控件 文本 | 更新日期: 2023-09-27 18:30:41

在我的richtextbox里面有一个checkbox,当向下或向上滚动我的富文本框时,复选框不会滚动。

CheckBox chk = new CheckBox();
chk.Name = "Chk" + i;
chk.Location = new Point(80,10+i);
chk.Text = "Save";
chk.Size = new System.Drawing.Size(20, 100);
richTextBox1.Controls.Add(chk);
i++;

你能告诉我如何解决它吗?

富文本框内的控件向下或向上滚动

RichTextBox不能包含CheckBox对象。 并且您已为检查点的位置设置了静态点

chk.Location = new Point(80,10+i)

,它已经过RichTextBox了,而不是进入那个

您可以处理RichTextBoxMouseWheelScroll事件,并使用GetScrollPos win32函数获取RichTextBox滚动条的新位置,然后相应地更新CheckBox的位置。请注意,当MouseWheel被抬起时,滚动条的位置不会立即更改为新位置,它将从当前滚动条平滑地更改为新滚动条。这就是为什么我们必须使用Timer定期反复调用GetScrollPos,直到返回位置相同。我们得到的效果并不完美,因为滚动条移动的平滑度,但它接近这种平滑度,并且比在MouseWheel事件处理程序中调用GetScrollPos要好得多。

但是在此代码中,我想使用 NativeWindow 挂钩到消息循环并获取发送到RichTextBox的消息,这是工作正常的代码,此代码只是一个演示,仅处理Vertical scrolling。您可以找到有关处理Horizontal scrolling WM_HSCROLLGetScrollPos的更多信息(这很容易,因为它与Vertical scrolling非常相似):

public partial class Form1 : Form
{
    [DllImport("user32")]
    private static extern int GetScrollPos(IntPtr hwnd, int nBar);
    public Form1()
    {
        InitializeComponent();
        chk.Text = ".NET pro";
        chk.Parent = richTextBox1;
        chk.Top = 100;//Notice the initial Top to update the position properly later.            
        nativeRichText.AssignHandle(richTextBox1.Handle);
        //Scroll event handler for the nativeRichText
        nativeRichText.Scroll += (s, e) =>
        {
            chk.Top = 100-e.Y;
        };
        //TextChanged event handler for the richTextBox1
        richTextBox1.TextChanged += (s, e) =>
        {
            chk.Top = 100-GetScrollPos(richTextBox1.Handle, 1);
        };            
    }
    CheckBox chk = new CheckBox();
    NativeRichTextBox nativeRichText = new NativeRichTextBox();        
    public class NativeRichTextBox : NativeWindow
    {
        Timer t = new Timer();
        int y = -1;
        public NativeRichTextBox()
        {
            t.Interval = 30;
            t.Tick += (s, e) =>
            {                                     
                int y2 = Form1.GetScrollPos(Handle, 1);//nBar =1 => Vertical bar
                if (y2 == y) { t.Stop(); return; }
                y = y2;
                if (Scroll != null) Scroll(this, new ScrollEventArgs(0, y));                    
            };
        }
        protected override void WndProc(ref Message m)
        {
            if (m.Msg == 0x115)//WM_VSCROLL = 0x115
            {
                int wp = m.WParam.ToInt32();
                int low = wp & 0x00ff;
                if (low == 4 || low == 5)//SB_THUMBPOSITION = 4   SB_THUMBTRACK = 5
                {
                    if (Scroll != null) Scroll(this, new ScrollEventArgs(0, wp >> 16));
                }
                else t.Start();
            }
            if (m.Msg == 0x20a)//WM_MOUSEWHEEL = 0x20a
            {
                y = -1;
                t.Start();
            }
            base.WndProc(ref m);                
        }
        public class ScrollEventArgs : EventArgs
        {
            public int X { get; set; }
            public int Y { get; set; }
            public ScrollEventArgs(int x, int y)
            {
                X = x;
                Y = y;
            }
        }
        public delegate void ScrollEventHandler(object sender, ScrollEventArgs e);
        public event ScrollEventHandler Scroll;
    }
}

很可能您在组合框或下拉列表中看到过复选框。这是可以做到的。您可以尝试使用此类第三方控件,也可以编写自己的代码。这个话题已经在另一个关于SO的问题中讨论过,看看这里,所以我们不重新开始辩论这个问题中的同一话题。

相反,您通过代码获得的只是以图形方式将一个控件放在另一个控件上,但它们不会相互交互。它们是两个单独的控件。