Completed
Last Updated: 15 Aug 2017 11:03 by ADMIN
ADMIN
Dimitar
Created on: 23 May 2017 12:43
Category: Editors
Type: Bug Report
1
FIX. RadTextBoxControl - One should be able to disable the mouse wheel without custom input handler.
Workaround:

class MyTextBoxInputHandler : TextBoxInputHandler
{

public MyTextBoxInputHandler(RadTextBoxControlElement el) : base(el)
{
}

public override bool ProcessMouseWheel(MouseEventArgs e)
{
return false;
}
}

 radTextBoxControl1.TextBoxElement.InputHandler = new MyTextBoxInputHandler(radTextBoxControl1.TextBoxElement);
0 comments