Completed
Last Updated: 13 Sep 2017 06:03 by ADMIN
ADMIN
Dimitar
Created on: 31 Jul 2017 08:03
Category: Diagram, DiagramRibbonBar, DiagramToolBox
Type: Bug Report
0
FIX. RadDiagram - the scrollbar is not moved when clicking between the thumb and the button.
To reproduce
- Click between the thumb and the button.

Workaround:
public class MyDiagramInputBehavior : DiagramInputBehavior
{
    public MyDiagramInputBehavior(RadDiagramElement element) : base(element)
    {


    }
    protected override bool IsScrollBar(RadElement element)
    {
        if (element != null && element is RadScrollBarElement)
        {
            return true;
        }
        return base.IsScrollBar(element);
    }
}
0 comments