我一直在寻找使鼠标滚轮与滚动框组件一起使用的选项,到目前为止我得到了这个
void __fastcall TForm1::ScrollBox1MouseWheelDown(TObject *Sender, TShiftState Shift,
TPoint &MousePos, bool &Handled)
{
Form1->ScrollBox1->VertScrollBar->Position++;
}
void __fastcall TForm1::ScrollBox1MouseWheelUp(TObject *Sender, TShiftState Shift,
TPoint &MousePos, bool &Handled)
{
Form1->ScrollBox1->VertScrollBar->Position--;
}
到目前为止,它可以工作,但滚动速度非常慢。有什么方法可以让它滚动得更快,或者在 c++ builder 中处理滚动的更好方法吗?