c#RichTextBox - 使用隐藏的ScrollBar滚动

时间:2012-08-11 13:39:10

标签: c# scrollbar richtextbox

我有RichTextBox控件,隐藏了两个Scrollbars。当它们被隐藏时我无法用鼠标滚动文本,我只能使用PgUp和PgDown键来移动文本。

但是我想在ScrollBars被禁用时用鼠标滚动,有什么方法可以做到这一点吗?

1 个答案:

答案 0 :(得分:1)

public Form1()
{
    InitializeComponent();
    richTextBox1.MouseWheel += new MouseEventHandler(richTextBox_MouseWheel);

}

private void Form1_Load(object sender, EventArgs e)
{


}
void richTextBox_MouseWheel(object sender, MouseEventArgs e)
{
         MessageBox.Show(e.Delta.ToString());
         // use this value to scroll

        }