0

is there a way to stop a Component One datepicker from changing dates when the mouse is over the datepicker and the scroll wheel is scrolled?

Corey Witherow
  • 2,472
  • 2
  • 26
  • 37

1 Answers1

1

with currently released version I see the only way to inherit from it:

public class MyDatePicker : C1DatePicker
{
    protected override void OnMouseWheel(System.Windows.Input.MouseWheelEventArgs e)
    {
        e.Handled = true;
        base.OnMouseWheel(e);
    }
}

We have absolutely free support forums for such questions: http://our.componentone.com/groups/silverlight/studio-for-silverlight/forum/

notacat
  • 671
  • 6
  • 11