1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
void __fastcall TFMiniCourbes::scrollPanelMouseWheel(TObject *Sender, TShiftState Shift,
const TPoint &MousePos, bool &Handled)
{
MessageDlg("machin", mtInformation, TMsgDlgButtons() << mbOK, 0);
}
//---------------------------------------------------------------------------
void __fastcall TFMiniCourbes::scrollPanelMouseWheelDown(TObject *Sender, TShiftState Shift,
const TPoint &MousePos, bool &Handled)
{
SendMessage(this->scrollPanel->Handle,WM_VSCROLL,SB_LINEDOWN,0);
}
//---------------------------------------------------------------------------
void __fastcall TFMiniCourbes::scrollPanelMouseWheelUp(TObject *Sender, TShiftState Shift,
const TPoint &MousePos, bool &Handled)
{
SendMessage(this->scrollPanel->Handle,WM_VSCROLL,SB_LINEUP,0);
} |
Partager