BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
protected override void WndProc(ref Message m) { if(m.Msg != 0x20a) //(WM_MOUSEWHEEL) { base.WndProc (ref m); } }Maybe the same technique will work for you and your user control that is being scrolled.
>protected override void WndProc(ref Message m) >{ > if(m.Msg != 0x20a) //(WM_MOUSEWHEEL) > { > base.WndProc (ref m); > } >} >> >Maybe the same technique will work for you and your user control that is being scrolled.