Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hello,
Is there a way to disble the scroll when using the mouse wheel?
Regards,
Alberto
public
class
CustomPanel : RadScrollablePanel
{
protected
override
RadScrollablePanelContainer CreateScrollablePanelContainer()
return
new
CustomRadScrollablePanelContainer(
this
);
}
string
ThemeClassName
get
typeof
(RadScrollablePanel).FullName;
CustomRadScrollablePanelContainer : RadScrollablePanelContainer
CustomRadScrollablePanelContainer(RadScrollablePanel parentPanel) :
base
(parentPanel)
void
OnMouseWheel(MouseEventArgs e)
//base.OnMouseWheel(e);
Thank you Dess,
That works.
Alberto Martinez